
function mOver(Item , Type ) {
	Item.style.cursor = "hand";
	if (!Type){ 
		var Type = 0; 
	}
	 if ( Type == 1 ) {
		 Item.style.backgroundColor="#9ED3EF";
	 } else {
		 Item.style.backgroundColor="#006699";		 
	 }

}

 function mOut(Item, Type) {
	 Item.style.cursor = "pointer";
	if (!Type){ 
		var Type = 0; 	
		}	
	 if ( Type == 1 ) {
		 Item.style.backgroundColor="#CAE1ED";
	 } else {
		 Item.style.backgroundColor="#3399CC";	 
	 }

}
