// JavaScript Document

function turnOn (block){

	block.parentNode.parentNode.style.backgroundColor='#005952';	
}

function turnOff (block){

	block.parentNode.parentNode.style.backgroundColor='#009390';	
}

// ------------ side menus 

function side_menu_open (block){
	
	var the_li = block;
	
	//alert(the_li.tagName);
	if (the_li.lastChild.nodeName == 'UL'){
	the_li.lastChild.style.display='inline';
	}	
}

function side_menu_close (block){

	var the_li = block;
	
	//alert(the_li.tagName);
	if (the_li.lastChild.nodeName == 'UL'){	
	the_li.lastChild.style.display='none';
	}
	
}

