$(document).ready(function() {
	$('#container').css('left' , ($(window).width()-760)/2);
	$('#background').children('img').attr('width', $(window).width());
	window.setTimeout("$('#background').fadeIn('slow');", 1000);
});
$(window).resize(function() {
	$('#container').css('left' , ($(window).width()-760)/2);
	$('#background').children('img').attr('width', $(window).width());
});
