// JavaScript Document

function backgroundswitch(){
	var screenX = screen.width;
	if(screen.width >= 1600){document.getElementById("bodyswitched").style.backgroundImage= "url(images/1600x1200.png)";
							 }else
	if(screen.width >= 1280){document.getElementById("bodyswitched").style.backgroundImage= "url(images/1280x1024.png)";
							 }else
	if(screen.width >= 1024){document.getElementById("bodyswitched").style.backgroundImage= "url(images/1024x768.png)";
							 }else
	if(screen.width >=  800){document.getElementById("bodyswitched").style.backgroundImage= "url(images/800x600.png)";
							 }
	} 