function tireteaser()
{
	var tiret = document.getElementById("tire_teaser");
	tiret.onmouseover = mouseGoesOver;
	tiret.onmouseout = mouseGoesOut;
	tiret.onclick = mouseGoesClick;
}
function mouseGoesOver()
{
	document.getElementById("tire_teaser").getElementsByTagName("p")[0].className = "over";
	document.getElementById("tire_teaser").className = "teaserover";
	//alert(document.getElementById("tire_teaser").className);
}
function mouseGoesOut()
{
	document.getElementById("tire_teaser").getElementsByTagName("p")[0].className = "out";
}
function mouseGoesClick()
{
	var url = document.getElementById("tire_teaser").getElementsByTagName("a")[0].href;
	document.location.href = url;
}