// STORE REQUIRED ACTIONS IN VARIABLE //

var W3CDOM = (document.getElementsByTagName);

function init() {
	
	windowwidth = window.innerWidth;

	if (!windowwidth) {
		windowwidth = document.documentElement.clientWidth;
	}

	if (!windowwidth || windowwidth == 0) {
		windowwidth = document.body.clientWidth;
		pagewidth = document.getElementById("pagewrapper").offsetWidth;
	}

	if(windowwidth < 900) {

		document.getElementById("leftsidecontent").style.paddingTop = "70px";

	} else {

		document.getElementById("leftsidecontent").style.paddingTop = "20px";

	}

}

function mousegoesover() {
	this.className = "over";
	this.style.cursor = "pointer";
}

function mousegoesout() {
	this.className = "";
}

