function menu_attivo() {
	var anchors = document.getElementsByTagName('a');
	
	for (var i=0; i<anchors.length; i++){
		
		var ancora = anchors[i];
		if (ancora.href == nomepagina()){
			ancora.style.color = "#d50274";
			//ancora.setAttribute("rel","portfolio_vuota");
		}
	}
	
}

function nomepagina() {
	var x = location.href.split("?");
	y = x[0];
	y = y.replace(/_dettaglio/,"");
	return y;
}
