
// WRAP ARROW IMAGES INTO LINK POINTING TO TOP OF PAGE
    $(document).ready(function(){
        $("img[@src*='files/icones/fleche.png']").wrap('<a class="toHeader" href="#header"></a>').parents("p").addClass("arrow");
    });



$(document).ready(
	function(){		
		//innerfade start
			$("img[@src*='/serie/']").parents("p").addClass("innerfade");
    		$(".innerfade")
                .before('<p style="height: 1px; overflow: hidden; ">&#160</p>')
                .innerfade({
    				speed: 'slow',
    				timeout: 3500,
    				type: 'sequence',
    				containerheight: "155px"
    			});
            $(".innerfade")
                .each(
                    function(){
                        var myWidth = $(this).find("img").attr("width");
                        $(this).css( "width", myWidth + "px" );         
                    }
                );
		//innerfade end
    		
	}
);


