/*Copyright By EdwardVietato qualsiasi utilizzo non autorizzato del codice presente in questo file*/jQuery.noConflict();jQuery(document).ready(function(){	jQuery(".spoilerhead a").click(function () {		jQuery(jQuery(this).parent().parent()).children(".spoiler_content").toggle("slow");		if (jQuery(this).text() == "MOSTRA"){			jQuery(this).text("NASCONDI");		}else{			jQuery(this).text("MOSTRA");		}			});});