$(document).ready(
    function () 
    {	
		$("#Top > li").hover(
			function (event) {
				$(this).find('ul').show();
			},
			function (event) {
				$(this).find('ul').hide();
			}
		);
		
		$('#ImagesVerticales').animate({ top: '-60' }, 5000, function() { });
	}
);
