// JavaScript Document


$(document).ready(function () {
	$('#pageContainer img').imgpreload(function() {
		docHeight = $(document).height();
		winHeight = $(window).height();
		resizeFooter();
	});
});

function resizeFooter() { 
    $('#rightGraphic').css({
		display:'block',
		top: docHeight - 232
	});
	$('#leftGraphic').css({
		display:'block',
		top: docHeight - 6
	});
}

$(window).resize(function() {
	docHeight = $(document).height();
	resizeFooter();
});
