// JavaScript Document

function section_on(obj, color){
	obj.style.backgroundColor = '#ededed';
}
function section_off(obj, color){
	obj.style.backgroundColor = '#e0e0e0';
}
function showToggle(id){
	if(document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = '';
	}else{
		document.getElementById(id).style.display = 'none';	
	}
}
function show(id){
	document.getElementById(id).style.display='';
	//obj.style.display = 'none';
}
