//Menu implementation
$(document).ready(function(){
								
	$("#imganima").cycle({
		fx: 'fade',
		speed: 2500,
		timeout: 2500
	});
	
	$("ul.level0 > li > a").mouseover(function() {
		$(this).addClass("hover").parent().addClass("hover").find("span").addClass("hover");								
		$(this).parent().find("ul.level1").slideDown("normal").show();
			
		$(this).parent().hover(function() {  
        	}, function(){
				$(this).parent().find("ul.level1").slideUp('fast');  
        });
	}).mouseout(function() {
		$(this).removeClass("hover").parent().removeClass("hover").find("span").removeClass("hover");
	});

});

