var cur_location = window.location.pathname;
//alert(cur_location);
var contestInfo = document.getElementById("home_contestInfo");

if(cur_location == "/home" || cur_location == "/" || cur_location == "/home/")
{
	//alert('IN HERE!');	
	contestInfo.style.width = "310px";
	contestInfo.innerHTML ="<span class='h_l1'>The big moment is almost here Toronto!</span><br /><br /><span class='h_l2'>KiSS 92.5 has received all kinds of entries for the &quot;Show Us Ur kiss&quot; contest.</span><br /><br /><span class='h_l3'>We've narrowed it down to the <b>'Top Ten.'</b></span><br /><br /><span class='h_l4'>Now, ta-dah, it's time to pick a winner. Who is it gonna be? Who will win $5000 dollars cash. It's all up to you.</span><br /><br /><span class='h_l3'>Vote for your favourite <b>'Show Us Ur KiSS'</b>.</span><br /><br /><span class='h_l4'>The Grand prize winner gets 5 THOUSAND DOLLARS CASH.</span><br /><br /><span class='h_l6'>The other nine finalists get free pizza for a year from Pizza Pizza.<br /><br />Decide our winner. Go now. Show Us Ur KiSS.</span>";
	
	document.getElementById("home_contestInfo_shadow").style.height = contestInfo.offsetHeight + "px";
	//alert(document.getElementById("home_contestInfo_shadow").height);
}

else if(cur_location == "/enter")
{
	contestInfo.style.padding = "0px";
	contestInfo.style.height = (document.getElementById("contentwrapper").scrollHeight + 40) + "px";
	document.getElementById("home_contestInfo_shadow").style.height = "0px";
}

else
{
	contestInfo.style.padding = "0px";
	contestInfo.style.height = document.getElementById("contentwrapper").scrollHeight + "px";
	document.getElementById("home_contestInfo_shadow").style.height = "0px";
	//alert(document.getElementById("contentwrapper").height)
}