$(function($) {
$('.jclock').jclock();
});

$(document).ready(function(){
$(".jqcont").show();
$(".jqconthide").hide();
$(".jqshow").css('cursor','pointer');
$(".jqshow").click(function () {
//alert(this.id);
$('#'+this.id+' + .jqcont').toggle(200);
$('#'+this.id+' + .jqconthide').toggle(200);
});
});


function azzera(campo) {
	campo.value = "";	
}
	
function operazione(newsletter, op) {
	var mail = newsletter.mail.value;
	if (mail!="") {
		if (op == 'i') 
		    window.open("newsletter.php?email="+mail+"&action=iscriviti",width=1,height=1);
		else 
		    window.open("newsletter.php?email="+mail+"&action=cancellati",width=1,height=1);
		newsletter.mail.value = "";		
	}	
} 



