//Domready
$(document).ready(function(){ 
	
// Thumb caption
	$('.a_thumb').hover(function(){
		$(".cover", this).stop().animate({top:'175px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'202px'},{queue:false,duration:160});
	});
		
//Drop down
  $('span.menu_head').click(function (){
		$('span.menu_head').toggleClass("active");
		$('ul.menu_body').slideToggle('medium');
   });

	
});
//Domready end