if (document.getElementById('items'))
{
	var its = document.getElementById('items').getElementsByTagName('div');
	for (i = 0; i < its.length; i++)
	{
		if (its[i].className == 'item')
		{
			its[i].onclick = function()
			{
				window.open(this.getElementsByTagName('a')[0].href);
				return false;
			}
			its[i].onmouseover = function()
			{
				this.oldbg = this.getElementsByTagName('a')[0].style.backgroundColor;
				this.oldc = this.getElementsByTagName('a')[0].style.color;
				this.getElementsByTagName('a')[0].style.backgroundColor = '#0952F7';
				this.getElementsByTagName('a')[0].style.color = '#FFD50F';
				return false;
			}
			its[i].onmouseout = function()
			{
				this.getElementsByTagName('a')[0].style.backgroundColor = this.oldbg;
				this.getElementsByTagName('a')[0].style.color = this.oldc;
				return false;
			}
		}
	}
}
