// Ajuntament de Barcelona 
// www.bcn.cat | www.bcn.es


// Definicio de variables globals.
// ---------------------------------------------------------------------------------------------------------------------
var idioma = $("html").attr("lang");
var pathSite = $("meta[name=base]").attr("content");


$(document).ready ( function() {
	// Qui és qui. Obre els enllaços del path al document pare.
	// ---------------------------------------------------------------------------------------------------------------------
	$("#content p#path a").each ( function() {
		$(this).click ( function() {
			window.parent.location.href = this.href;
			return(false);
		});
	});
});

