/*================= Global variables ==================*/
var MAINHEIGHT;	/*Container height*/
var HEADERHEIGHT;	/*Header height*/
var CONTHEIGHT;	/*Container height*/
var FOOTERHEIGT;	/*Footer height*/
/*=====================================================*/

/*setvariables function*/
function setVariables () {
	CONTHEIGHT 	 = document.getElementById("content").offsetHeight;
	SIDEHEIGHT 	 = document.getElementById("sidebar").offsetHeight;
}

/*Fix Layout height IE*/
function fixLayoutIE () {
	document.getElementById("sidebar").style.height = CONTHEIGHT + "px";
}
/*Fix Layout height*/
function fixLayout()
{
	document.getElementById("sidebar").style.height = CONTHEIGHT + "px";
}
/*Listeners*/
if (window.addEventListener){
	window.addEventListener("load", setVariables, false);
	window.addEventListener("load", fixLayout, false);
	window.addEventListener("resize", fixLayout, false);
}
else if (window.attachEvent){
	window.attachEvent("onload", fixLayoutIE);
	window.attachEvent("onload", setVariables);
	window.attachEvent("onresize", fixLayoutIE);
}
