$(document).ready(function(){
	
	/* SCALABLE BACKGROUND FIX IN JS */



		$("div#container").scroll(function() {							   
		 var screenheight = parseInt($(document).height());
		 var scrolledpx = parseInt($("div#container").scrollTop());		
		 var sum = screenheight+scrolledpx;
		 $("div.content").height(sum); //fix box height to always make navigation bar 100% height
	});
});


