<!--
	var background;

	if (screen.width == 800) {
		background = "http://www.artitude.com.sg/images/800_bg.jpg";
	}

	else if (screen.width == 1024) {
		background = "http://www.artitude.com.sg/images/1024_bg.jpg";
	}

	else if (screen.width == 1152) {
		background = "http://www.artitude.com.sg/images/1152_bg.jpg";
	}

	else if (screen.width == 1280) {
		background = "http://www.artitude.com.sg/images/1280_bg.jpg";
	}

	else if (screen.width == 1600) {
		background = "http://www.artitude.com.sg/images/1600_bg.jpg";
	}

	else {
		background = "http://www.artitude.com.sg/images/1600_bg.jpg";
	}

	document.body.background = background;
-->