function initGamewallpaperImage(id){
	try{
		var seed = Math.round( Math.random()*10000 ) % 5;
		var image;
		switch( seed ){
			case 0: image="http://www.gamewallpapers.com/wallpaperoftheday/wallpaperoftheday_pc.jpg"; break;
			case 1: image="http://www.gamewallpapers.com/wallpaperoftheday/wallpaperoftheday_ps2.jpg"; break;
			case 2: image="http://www.gamewallpapers.com/wallpaperoftheday/wallpaperoftheday_xbox.jpg"; break;
			case 3: image="http://www.gamewallpapers.com/wallpaperoftheday/wallpaperoftheday_gc.jpg"; break;
			case 4: image="http://www.gamewallpapers.com/wallpaperoftheday/wallpaperoftheday_console.jpg"; break;
			default: image="http://www.gamewallpapers.com/wallpaperoftheday/wallpaperoftheday_pc.jpg"; break;
		}
		document.getElementById(id).src = image;
	}catch(er){}
}
