$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       600,                            // one second delay on mouseout 
		animation:   {height:'show'},  // fade-in and slide-down animation 
		speed:       'normal',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	});
	 $(function () {				
	$('.link-img')
	.hover(function(){
		$(this).find('.text-box-img')
		.stop().animate({bottom:0}, {duration:400})
	}, function(){
		$(this).find('.text-box-img')
		.stop().animate({bottom:-500}, {duration:400})
	})
	}); 

	
}); 
