window.addEvent('domready',function(){
	var alllinks=$$('ul a');
	function cDebug(obj){
		if(typeof console != 'undefined')
			console.log(obj)
	}
	var mem_title=false;
	alllinks.each(function(curlink){
		curlink.addEvent('mouseenter',function(){
			mem_title=this.title;
			this.set('title','');
		});
		curlink.addEvent('mouseout',function(){
			this.title=mem_title;
			cDebug(this.title)
		})	
	})
	
})

