// JavaScript Document

function renderPage()
{
	l = $(window).width() / 2 - (954/2);
	t = $(window).height()/2 - (768/2);
	$("#notebook").css({"left" : l, "top" : t});
	$("#main").css({"left" : l + 119, "top" : t + 90});
	$("#menu").css({"left" : l + 137, "top" : t + 647});			
	$("#logo").css({"left" : ($(window).width() / 2) - (100/2),"top" : $(window).height() - 70})
}

$(document).ready(function(){	
	renderPage();
});
$(window).resize(function() {	renderPage()	});
