function  mnu_over(id){ 
document.getElementById(id).className=id + '_ON';

}
function  mnu_out(id){ 
document.getElementById(id).className=id + '_OFF';
}

// Example:

function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}
simplePreload( 	
'/imagenes/bot_inicio_act.jpg', 
'/imagenes/bot_nosotros_act.jpg', 	
'/imagenes/bot_carta_act.jpg', 	
'/imagenes/bot_ofertas_act.jpg', 	
'/imagenes/bot_saludable_act.jpg', 				
'/imagenes/bot_contacto_act.jpg', 					
'/imagenes/bot_inicio_repo.jpg', 
'/imagenes/bot_nosotros_repo.jpg', 
'/imagenes/bot_carta_repo.jpg', 	
'/imagenes/bot_ofertas_repo.jpg', 	
'/imagenes/bot_saludable_repo.jpg', 				
'/imagenes/bot_contacto_repo.jpg');	
