
d = document;
//show info tekst on mouse over
function infoText(info,bg){
	d.getElementById('infotext').innerHTML = info;
	d.getElementById('infobg').style.backgroundColor = bg;
	d.getElementById('infobg').style.backgroundImage='url('+ baseURL+'/img/home/main/top_info.gif)';
	d.getElementById('infobg').style.backgroundPosition = '0px 0px';
	d.getElementById('infobg').style.backgroundRepeat = 'no-repeat';

}

function infoTextOut(){
	d.getElementById('infotext').innerHTML = '';
	d.getElementById('infobg').style.backgroundColor = '';
	d.getElementById('infobg').style.backgroundImage='none';
}