function myPreloads() {
	initRollovers();
	var moz = ((document.all)? false : true);
    var ie = ((document.all)? true : false);

	var heightContent = 0;
	

	// Get biggest column height by checking
	if (document.getElementById('content'))
	{
		heightContent = document.getElementById('content').offsetHeight;
	}
	if (document.getElementById('sidebar'))
	{
		heightContent = document.getElementById('sidebar').offsetHeight > heightContent ? document.getElementById('sidebar').offsetHeight : heightContent;
	}

	heightContent = heightContent - 10;
	
	//IE cannot have the 'px;' but FF needs them.
	if(ie){
	document.getElementById('sidebar').style.height = heightContent;
	if (!document.getElementById('aux-sidebar')){
	
	}else{
	document.getElementById('aux-sidebar').style.height = heightContent;
	}
	}
	
	//for mozilla browsers, display + 'px;'
	if(moz){
	document.getElementById('sidebar').style.height = heightContent + 'px;';
	if (!document.getElementById('aux-sidebar')){
	
	}else{
	document.getElementById('aux-sidebar').style.height = heightContent + 'px;';
	}
	}
	
	
	// Get biggest column height by checking
	if (document.getElementById('ctl00_ContentPlaceHolder1_foyt'))
	{
		heightContent = document.getElementById('ctl00_ContentPlaceHolder1_foyt').offsetHeight;
	}
	if (document.getElementById('ctl00_ContentPlaceHolder1_starne'))
	{
		heightContent = document.getElementById('ctl00_ContentPlaceHolder1_starne').offsetHeight > heightContent ? document.getElementById('ctl00_ContentPlaceHolder1_starne').offsetHeight : heightContent;
	}

	//heightContent = heightContent - 10;
	
	//IE cannot have the 'px;' but FF needs them.
	if(ie){
	    if (document.getElementById('ctl00_ContentPlaceHolder1_starne'))
	    {
	        document.getElementById('ctl00_ContentPlaceHolder1_starne').style.height = heightContent;
	    }
	if (!document.getElementById('ctl00_ContentPlaceHolder1_baranouski')){
	
	}else{
	document.getElementById('ctl00_ContentPlaceHolder1_baranouski').style.height = heightContent;
	}
	}
	
	//for mozilla browsers, display + 'px;'
	if(moz){
	    if (document.getElementById('ctl00_ContentPlaceHolder1_starne'))
	    {
	        document.getElementById('ctl00_ContentPlaceHolder1_starne').style.height = heightContent + 'px;';
	    }
	if (!document.getElementById('ctl00_ContentPlaceHolder1_baranouski')){
	
	}else{
	document.getElementById('ctl00_ContentPlaceHolder1_baranouski').style.height = heightContent + 'px;';
	}
	}
	

}

window.onload = myPreloads;