$(document).ready(function(){
	var windowheight = $(document).height();
	$('.footer').height(windowheight - $('.container').outerHeight(true));
	
	$('#nav li').hover(
		function(){
			$(this).children('ul').fadeIn(100);
		}, function(){
			$(this).children('ul').fadeOut(100);
		}
	);
});

$(window).load(function(){
	$('.storelisting .storeshot').each(function(){
		var image = $(this).find('img:first');
		
		if(image.height() < $(this).height()){
			image.css('padding-top', (($(this).height() - image.height()) / 2));
			
		}
	});
});
