	/* Gooo */		
	$$(".goo").addEvent('click', function(e){
		e.stop();
		//Pharsejo el anchor
		var re = new RegExp('#[a-z0-9\_\-]+');
		var m = re.exec(this.href);
		
		//goto anchor
		if (m) {
			//Elimino #
			var s ="";	for (i = 0; i < m.length; i++) {s = s + m[i] + "\n";	} 
			s= s.replace(/#/, "");
			s= s.replace(/\n/, "");
			
			//Go!!
			go(s);
			actual = s;
		} 
		
	});
	
	//Fade
	$$('.fade').addEvents({
	    'mouseover': function(){
			$$('.'+this.rel).fade(0.4);
			this.fade(1);
			//$((this.rel)).addClass('hover');
	    },
	    'mouseout': function(){
			$$('.'+this.rel).fade(0.15);
			//$((this.rel)).removeClass('hover');
		}
	});
	
	//HSpot
	$$('.hspot').addEvents({
		'mouseover': function(){
			this.fade(1);

		},
		'mouseout': function(){
			this.fade(0.6);

		}
	});
