/*******************************************************************************/
/* Copyright ©2007, Dennis Teunissen - Filmhuis Hoorn: www.filmhuishoorn.nl    */
/* JAVASRIPTFILE FOR THE WEBSITE OF FILMHUIS HOORN                             */
/* SCRIPT: AGENDA                                                              */
/*******************************************************************************/

// change background of the agendaitems on mouseover / mouseout
function changeBg(type, rowCtr){
	if(type == 0){
		document.getElementById('agendaitem_'+rowCtr).style.background = '#FFFF99';
    }
    
	if(type == 1){
		document.getElementById('agendaitem_'+rowCtr).style.background = '';
    }
}
