function bg(image) {
	var body=document.getElementById("body");

	body.style.backgroundImage="url("+image+")";
	body.style.backgroundAttachment="fixed";
	body.style.backgroundRepeat="no-repeat";
	body.style.backgroundPosition="200px 30%";
}