function initTeasers()
{
	var teasers = document.getElementById("teasers");
	if (teasers)
	{
		var nodes = teasers.getElementsByTagName("div");
		for (var i = 0; i < nodes.length; i++)
		{
			if (nodes[i].className.indexOf("item") != -1)
			{
				nodes[i].onmouseover = function () 
				{
					if (this.className.indexOf("hover") == -1)
					{
						this.className += " hover";
					}
				}
				nodes[i].onmouseout = function ()
				{
					if (this.className.indexOf("hover") != -1)
					{
						this.className = this.className.replace("hover", "");
					}
				}
			}
		}
	}
}
if (window.attachEvent && !window.opera)
	window.attachEvent("onload", initTeasers);
