function setBackground()

{
	if (document.body)
    {
    var width = screen.width;
	var height = screen.height;
		if (screen.width=='1024'&&screen.height=='768') {document.body.style.backgroundImage = "url(/images/backgrounds/home1024x768.jpg)";}
		else if (screen.width == '1152' && screen.height == '864') { document.body.style.backgroundImage = "url(/images/backgrounds/home1152x864.jpg)"; }
		else if (screen.width == '1200' && screen.height == '720') { document.body.style.backgroundImage = "url(/images/backgrounds/home1200x720.jpg)"; }
		else if (screen.width == '1280' && screen.height == '768') { document.body.style.backgroundImage = "url(/images/backgrounds/home1280x768.jpg)"; }
		else if (screen.width == '1280' && screen.height == '800') { document.body.style.backgroundImage = "url(/images/backgrounds/home1280x800.jpg)"; }
		else if (screen.width == '1280' && screen.height == '960') { document.body.style.backgroundImage = "url(/images/backgrounds/home1280x960.jpg)"; }
		else if (screen.width == '1280' && screen.height == '1024') { document.body.style.backgroundImage = "url(/images/backgrounds/home1280x1024.jpg)"; }
		else if (screen.width == '1360' && screen.height == '768') { document.body.style.backgroundImage = "url(/images/backgrounds/home1360x768.jpg)"; }
		else if (screen.width == '1440' && screen.height == '900') { document.body.style.backgroundImage = "url(/images/backgrounds/home1360x768.jpg)"; }
		else if (screen.width == '1600' && screen.height == '1200') { document.body.style.backgroundImage = "url(/images/backgrounds/home1600x1200.jpg)"; }
		else if (screen.width == '1600' && screen.height == '900') { document.body.style.backgroundImage = "url(/images/backgrounds/home1600x900.jpg)"; }
		else if (screen.width == '1680' && screen.height == '1050') { document.body.style.backgroundImage = "url(/images/backgrounds/home1680x1050.jpg)"; }
		else if (screen.width == '1920' && screen.height == '1200') { document.body.style.backgroundImage = "url(/images/backgrounds/home1920x1200.jpg)"; }
	    else {document.body.style.backgroundImage = "url(/images/backgrounds/backgroundpixel.jpg)";}
	}
 }
