// menu tiles liter

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

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

function txtlite( targetId ){
 	 if (document.getElementById){
  		target = document.getElementById( targetId );
  				target.style.background = "#be311a";
				target.style.color = "#fff";
  			}
  		}

function txtdim( targetId ){
 	 if (document.getElementById){
  		target = document.getElementById( targetId );
  				target.style.background = "transparent";
				target.style.color = "#be311a";
  			}
  		}