function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
	 var anchor = anchors[i];
	 if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}

jQuery(document).ready(function() {

	//Un link class close fa scomparire il tag "nonno" :)
	jQuery('.close').click(function(){
		jQuery(this).parent().parent().hide("slow");
	});

	//Annullo il thickbox
	//jQuery(".ngg-galleryoverview img:eq(0)").click(function () {return false}); //.ngg-galleryoverview img,img.carlist
	//jQuery(".ngg-galleryoverview img:eq(0)").css('cursor','default');

	externalLinks();

});
