window.addEvent('domready',function(){

	var menu=$('menu').getElements('a');
       

	menu.addEvents({
	
	'click': function(e){ 

	  
	  var arrayhref=this.get('href').split('=');
	  var tipoGaleria=arrayhref[1];


     	  e.stop();
	  
	  var miAjax = new Request.HTML(
	   {
	     method: 'get',
	     url:this.get('href'),
	     data:{tipo: tipoGaleria},
	     evalScripts: true,	
	     update: $('seccion'),
	     onRequest: function(){$('seccion').set('html','<img src="imagenes/ajax-loader.gif" style="position:absolute; top:200px;left:240px;"/>');}
	   }).send(); 

        },


	'mouseover':function(event){

		var miAjax1 = new Request(
	   	  {
	   	  method: 'get',
		  url: 'comun/ayuda.php',
	    	  data:{seccion :this.get('name')},
	    	  onComplete: function(texto)
	     	       {
			$('ayuda').set('html',texto);$('ayuda').fade('in');
		       }
		  }).send();

		  },

	'mouseleave':function(){
			$('ayuda').fade('out');
		}

   });


     

});