$(function() {
		   $('#storeContent').css('display','none');
		   
		   $('#storeContain').hover(function() {
		      
		      $('#storeContent',this).fadeIn();
		            
		      }, function() { $('#storeContent').delay(5000).fadeOut();
		   });
		});
