$(document).ready(function() {
	positionBG();
	$('.header .nav li ul').append("<div class='bot'></div>");
	
	$('.nav li').hover(function() {
	 	var height = $(this).children('ul').show().height();
		$(this).children('ul').css({'height':'20px'}).animate({'height':height}, 100);
	}, function() {
		$(this).children('ul').stop(true,true).animate({'height':'20px'}, 100, function() {
		 	$(this).css({'height': ''}).hide();
		});
	});	
});
$(window).resize(function() {
	positionBG();
});
function positionBG() {
	var width = $('body').width();
	if(width < 1000) {width = 1000;}
	var pos = (2200 - width) / 2;
	pos = "-" + pos + "px 0px";
	$('.header-bg, .footer-bg').css({'background-position':pos});
}
