/********************************************************************************/
function switchBG(status, id){

	if(status == 'on'){
		document.getElementById('menu-item-'+id).style.background = '#CCC url(http://www.showy.nl/trommelen/img/content/menu_bg_hover.jpg) repeat-x';
	} else {
		document.getElementById('menu-item-'+id).style.background = '#222222';		
	}
	
}
/********************************************************************************/
function switchBGsub(status, id){

	if(status == 'on'){
		document.getElementById('sub-menu-item-'+id).style.background = '#2b3469';
	} else {
		document.getElementById('sub-menu-item-'+id).style.background = '';		
	}
	
}
/********************************************************************************/
function switchBGsubsub(status, id){

	if(status == 'on'){
		document.getElementById('sub-sub-menu-item-'+id).style.background = '#384282';
	} else {
		document.getElementById('sub-sub-menu-item-'+id).style.background = '';		
	}
	
}
/********************************************************************************/
function switchBGSplash(status, id){

	if(status == 'on'){
		document.getElementById('block-item-'+id).style.background = '#1A1A1A';
	} else {
		document.getElementById('block-item-'+id).style.background = '#000000';		
	}
	
}