function get_email(name, domain)
{
	window.location="mailto:"+name+'@'+domain;
	return false;
}

function middle_rollover(class_name)
{
	if(class_name=='over')
		document.getElementById('layer_2').style.backgroundImage="url('/images/middle_text_rolledOver.png')";
	else
		document.getElementById('layer_2').style.backgroundImage="url('/images/middle_text_rolledOut.png')";
}

function side_rollover(class_name)
{
	if(class_name=='over')
	{
		document.getElementById('hotd_link').style.backgroundImage="url('/images/tab_credits_rollover.gif')";
		document.getElementById('hotd_link').style.width="232px";
		document.getElementById('hotd_link').style.height="68px";
	}
	else
	{
		document.getElementById('hotd_link').style.backgroundImage="url('/images/tab_credits.gif')";
		document.getElementById('hotd_link').style.width="25px";
		document.getElementById('hotd_link').style.height="68px";
	}
}