//global variables
var selectedList;

function $g(ele){
	return document.getElementById(ele);	
}
function initListMenu(act, ele){
	$g(ele).style.backgroundColor = '#264975';
	$g(ele).style.color = '#ffffff';
}
function listMenu(act, ele){
	if(act == 1){
		$g(ele).style.backgroundColor = '#666666';	
		$g(ele).style.color = '#ffffff';
	} else {
		$g(ele).style.backgroundColor = '#ffffff';	
		$g(ele).style.color = '#000000';
	}
}

