/*
Shoo! Don't be a copycat. Customize your own scripts!
*/





switch(screen.width)
{
	case 640: wallpaper('640'); break;
	case 800: wallpaper('800'); break;
	case 1024: wallpaper('1024'); break;
	case 1600: wallpaper('1600'); break;
	default : wallpaper('1024'); break;
}

function wallpaper(url)
{
	//document.location.replace(url);
document.write("<style type=text/css>body {background:#ffffff url(wallpaper" + url + ".jpg) no-repeat center fixed;}</style>")
}

