	function hov(img, action){
		if ( action == 2 ) {
			// roll over
			img.src = img.src.replace("nav/roll", "nav/nav");
		}else if ( action == 1 ){
			// rollout
			img.src = img.src.replace("nav/nav", "nav/roll");
		}
	
	}
