
window.onload = initPage;

function initPage (){

	document.getElementById(activeLink).parentNode.className = "active";
	
	document.getElementById("cover").className = "";
		
	if (activeLink == 'prod-35'){
		document.getElementById("cover").style.display = "block";
	}
	
	if (activeLink == 'prod-266'){
		document.getElementById("cover").className = "topRight";
	}
	
	if (activeLink == 'prod-265'){
		document.getElementById("cover").className = "bottomRight";
	}	
	
	if (activeLink == 'prod-270'){
		document.getElementById("cover").className = "bottomLeft";
		//document.getElementById("cover").style.marginTop="734px";
	}
	
}


function showThoughts(){
	if(document.getElementById) {
		document.getElementById("yourThoughts").style.display = "block";
	}
}
