$(document).ready(function(){
	$('div#page').hide();

	var howManyImages = 4;
	var whichImage = Math.round(Math.random()*(howManyImages-1)+1);
	$("img#bgimage").attr("src", "/background-images/home-"+whichImage+".jpg");

	var pageWidth = $(window).width();
	var pageHeight = $(window).height();
	var width = pageWidth - 96;

	$('div#hover').css({width: pageWidth-60+'px', height: pageHeight-198+'px' });

	if (width <= 2000) {
		$('img#arbor-large').css({width: width+'px', height: width/5.9+'px' });
		$('div#ie-tupperware').css({width: width+'px', height: width/5.9+'px' });
		
	} else {
		$('img#arbor-large').css({left: pageWidth-width/2+'px', height: ageWidth-width/2+'px' });
		$('div#ie-tupperware').css({left: pageWidth-width/2+'px', height: ageWidth-width/2+'px' });
	}	

	$('h1').hover(function() {
        $('div#page').fadeIn('normal');
	});

	$('div#hover').hover(function() {
        $('div#page').fadeIn('normal');
	});

	$('div#page').mouseleave(function() {
        $('div#page').fadeOut('normal');
     });

});