function backgroundFill(image) {
	$('html').css('height', '100%');
	$('body').css({
		'height': '100%',
		'margin': '0',
		'padding': '0'
	}).prepend('<div id="bg"><img src="' + image + '" width="100%" height="100%"></div>');
	$('#bg').css({
		'width': '100%',
		'height': '100%',
		'position': 'fixed',
		'left': '0',
		'top': '0'
	});
	$('#wrapper').css({
		'z-index': '1'
	});
}