/*jQuery(document).ready(function() {
		
		jQuery('.box-overlay').mouseenter(function() {		 
		 	jQuery(this).animate({
				 height: '95'
		 		},500 , function() {
 			 });
			});			
			});
				
		jQuery('.box-overlay').mouseleave(function() {
 		 jQuery(this).animate({
				 height: '22'
		 		},500 , function() {
 			 });
});
*/
