var bodyWidth;var bodyHeight;$(document).ready(function() {//	imageWidth = $('#image-marquee-inner img').width();		changeBackgroundImageSize();// RESIZE BACKGROUND IMAGE ON WINDOW RESIZE	$(window).resize(function() {		changeBackgroundImageSize();	});});function changeBackgroundImageSize() {	bodyWidth = $('body').width();	bodyHeight = $('body').height();	if($('body').height()/$('body').width() >= 768/1024) {		$('#background').css('height',bodyHeight);		$('#background').css('width','auto');	} else {		$('#background').css('width',bodyWidth);		$('#background').css('height','auto');	}}
