$(document).ready(function() {
    $('#logo').hide();
    $('#background').hide();
	var theWindow        = $(window);
	function initbackground(){
		if (document.body){
			url = "/background.php?width=" + theWindow.width() + "&height=" + theWindow.height();
			$('#background').css({'background-image':'url('+url+')','height':theWindow.height(),'width':theWindow.width()});
		}
	}
	initbackground();
    $('#background').delay(2000).fadeIn(1500);
    $('#logo').delay(1500).fadeIn('slow');
	theWindow.resize(function() {initbackground();}).trigger("resize");
});

