function setHeight() 
{
	var elm = document.getElementById('homePromos');	
	var vic1 = document.getElementById('homeLeftPromo');
	var vic2 = document.getElementById('homeMidPromo');
	var vic3 = document.getElementById('homeRightPromo');
	var x = elm.offsetHeight - 45;
	
	if(x < 275)
	{
		x = 275;	
	}
	
	vic1.style.height = x + "px";
	vic2.style.height = x + "px";
	vic3.style.height = x + "px";
}

function changeClass(id, newClass)
{
	var identity=document.getElementById(id);
	identity.className=newClass;
}
