$(document).ready(function() {
	$('.inner').hide();
	
	$('.box').mouseenter(function() {

				 
				
		
    
				
				$(this).find('.inner').stop(1,1).toggle(500);
				$(this).css({"z-index": "10"}, 500);
				$(this).stop(1,1).animate({marginTop: "-40px"}, 500);
		
			      
					
			
			
			
		});
		
		
	$('.box').mouseleave(function() {

			$(this).find('.inner').stop(1,1).toggle(500);
			
			$(this).css({"z-index": "5"}, 500);

			$(this).stop(1,1).animate({marginTop: "0"}, 500);
				
			
		});
		

	
}); 



