// JavaScript Document
function moureMenu(i){
	i=i*1;
	if(i<0){		
		i=i+10;
		document.getElementById('menu').style.top=i+"px";
		t=setTimeout("moureMenu("+i+")",40);
	}
	
}

// JavaScript Document
function canviEnllacosExterns(){
	var enllacos= new String;
	var enllac= new String;
	enllacos = document.getElementsByTagName("a");
	for (var i=0;i<enllacos.length;i++) {
	   enllac = enllacos[i];
	   if (enllac.getAttribute("href") && enllac.getAttribute("rel") == "enllacExtern"){
		   enllac.target = "_blank";
	   }
	}
}