$(document).ready(function(){
	
	$('#filNeige ul').innerfade({
						animationtype: 'slide',
						speed: 750,
						timeout: 4000,
						type: 'random',
						containerheight: 'em'
					});
	$("#menu li ul").hide();
    $("#menu li").mouseover(
        function(){ $("ul", this).show(); }
    );
	$('#menu li ul li').mouseout(
		function(){ $(this).parent().hide(); }
	);
});
