window.addEvent('domready', loadPage);	


function loadPage()
{
	if(currentpage == 'team')
	{
		loadPlayers();
	}
}

function loadPlayers()
{
	$('playerlist').getElements('div[class^=playeritem]').addEvents({
		mouseenter: function(){
			if(this.get('text')!=' ')
				this.addClass('playeritem_over');
		},
		mouseleave: function(){
			if(this.get('text')!=' ')
				this.removeClass('playeritem_over');
		}
	});	
}

function selectplayer( teamselect, rootpath )
{
    var path = "http://www.clubbrugge.be/" + rootpath ;
    selecteditem = teamselect.spelerlist.selectedIndex ;
    detail = teamselect.spelerlist.options[ selecteditem ].value ;
    if (detail.length != 0) {
      location.href = path + detail;
    }
}