jQuery(function(){
	jQuery('ul.sf-menu').superfish({animation:({height:'show'})		});
});
$(function(){ 	
	$(".image-block, .image-block1").hover(function(){
		$(this).find("a").stop().animate({opacity:0, zIndex:5}, 500)
	}, function(){
		$(this).find("a").stop().animate({opacity:1}, 500)
	});
});

