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'),
	     evalScripts: true,	
	     update: $('seccion'),
	     onRequest: function(){$('seccion').set('html','<img src="imagenes/ajax-loader.gif" style="position:absolute; top:400px;left:510px;"/>');}
	   }).send(); 

        },


	

	
   });


     

});
