//Item is the div to modify, Over is is the mouse over toggle
function ListItemToggle(strItem, blnOver){
	if (blnOver == true){
		document.getElementById(strItem).style.backgroundColor = "#efefef";
		document.getElementById(strItem).style.border = "1px solid #d9d9d9";
		document.getElementById(strItem).style.cursor = "pointer";
	}else{
		document.getElementById(strItem).removeAttribute("style");//was failing in IE
		document.getElementById(strItem).style.backgroundColor = "#ffffff";
		document.getElementById(strItem).style.border = "1px solid #ffffff";
	}
}

//follows the link
function ListItemClick(strUrl){
	window.open(strUrl, "_self");
}

