// JavaScript Document

if ($.browser.msie && $.browser.version < 7){
	//do other stuff
	alert ("Questo sito non e' ottimizzato per Internet Explorer 6: aggiorna il tuo browser se vuoi avere accesso a tutte le funzionalita' del sito.");
} 

$(document).ready(function(){
 	$('.offuscameil').each(	function(){
		var address = $.base64Decode($(this).attr('rel'));
 		$(this).attr('href', 'mailto:'+address);
		$(this).text(address);
	});
	
	
	$("a[rel~='external']").click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
});

