<!--
function changeStyle(obj, state){
	if( state == 1 ) {
		obj.className = "menuover";
	} else {
		obj.className = "menu";	
	}
}

// -->