/* Author: 

*/
function fixNav(){
	$("#searchbox").width($("#nav-wrapper").width() - $("#mainnav").outerWidth() - 5 );
	/*$("#subnavspacer").width($(window).width() - $("#logo").outerWidth() - $("#subnav").outerWidth()  - 29 );
	$("main"); */
}
function fixBackground() {
		var ratio = $(window).height() / $(window).width();
		
		if (ratio > (1000 / 1500))
			$("#background img").height("100%").width("auto");
		else
			$("#background img").width("100%").height("auto");
	}

$(document).ready(function(){
	fixNav();
	fixBackground();
});

$(window).resize(function(){ fixNav(); fixBackground();});



















