$(document).ready(function(){

	$('#nav li').hover( 
		function() {  $('ul', this).stop(true, true).slideDown(); },
		function() {  $('ul', this).stop(true, true).slideUp(); }
	);
	
	//$('body').append("<div style='background: #fff; padding: 10px;'>javascript is working</div>");


	$(window).resize(function(){ 
		
		resizeBg();
		
	});

}); //END OF START READY


function LoadBackground(bg)
{
	//$(document).ready(function(){
	
		$('#bgimg').html("<img src='/images/bg_"+bg+".jpg' />");
		$('.subhero').html("<img src='/images/subhero_"+bg+".jpg' />");
		
		resizeBg(); // run this after the image is loaded
		
	//});
	
	
	


}


function resizeBg(){
	var width = $('#bgimg').width();
	
		
	//ex 1592
	
	if(width < 1600)
	{
	    var diff = 1600 - width;
	    
	    var half = Math.ceil(diff/2);
	    
	    var code = "-"+half+"px";
	    
	    $('#bgimg img').css('left', code);
	}
	else
	{
	    $('#bgimg img').css('left', '0');
	}

}
