$(document).ready(function() {
	
	//gestione external
	$('a[rel=external]').click(function(evt){
		evt.preventDefault();
    window.open($(this).attr("href"));
	});
	
	
	
	$('#nav-section li a.locate').click(function(){
		locateOnMap($(this).attr('rel'));
		return false;
	});
	
	//gestione immagine di sfondo branding
	$('body').removeClass().addClass(branding_version);

	
		
});
