// JavaScript Document

function init(div) {
	
	if (String(window.location).indexOf("?") > -1) {
		var image = String(window.location).split("?")[1];
		document.getElementById('content').style.backgroundImage = "url(_photos/punk/" + image + ".jpg)";
		document.getElementById('content').style.backgroundColor = "#FFFFFF";
		document.getElementById('content').style.backgroundPosition = "center";
		document.getElementById("punk_intro").style.display = "none";
	}
	
}