// menu tiles liter

function lite( targetId ){
 	 if (document.getElementById){
  		target = document.getElementById( targetId );
  				target.style.backgroundColor = "#BED2A3";
				target.style.color = "#000";
  			}
  		}

function dim( targetId ){
 	 if (document.getElementById){
  		target = document.getElementById( targetId );
  				target.style.backgroundColor = "";
				target.style.color = "";
  			}
  		}
