if (document.getElementById('pakketten'))
{
	var plijst = document.getElementById('pakketten').getElementsByTagName('div');
	for (i = 0; i < plijst.length; i++)
	{
		if (plijst[i].className == 'pakketlijstitem')
		{
			plijst[i].onmouseover = function ()
			{
				this.oldbgc = this.style.backgroundColor;
				this.style.backgroundColor = '#FCB814';
				this.style.cursor = 'pointer';
			}
			
			plijst[i].onmouseout = function ()
			{
				this.style.backgroundColor = this.oldbgc;
			}
			
			plijst[i].onclick = function () 
			{
				if (this.getElementsByTagName('a')[0])
				{
					document.location.href= this.getElementsByTagName('a')[0].href;
				}
			}
			
			
		}
	}
}