<!-- Begin

// JavaScript Document
function styleOver(id){
	document.getElementById("smalllist_"+id).style.backgroundColor = "#0083d7";
	document.getElementById("info_1_"+id).style.color = "#ffffff";
	document.getElementById("info_2_"+id).style.color = "#ffffff";
	document.getElementById("info_3_"+id).style.color = "#ffffff";
	document.getElementById("info_4_"+id).style.color = "#ffffff";
}
function styleOut(id){
	document.getElementById("smalllist_"+id).style.backgroundColor = "#ffffff";
	document.getElementById("info_1_"+id).style.color = "#3366a8";
	document.getElementById("info_2_"+id).style.color = "#000000";
	document.getElementById("info_3_"+id).style.color = "#000000";
	document.getElementById("info_4_"+id).style.color = "#000000";
}
function divClick(url){
	window.location=url;
}
//  End -->

