

$(document).ready(function() {
	    
	//dettaglio_prodotto
	$("a.protetta").fancybox({
			'content' : 'E\' necessario registrarsi o effettuare l\'accesso per continuare con l\'acquisto<br><br><center><button onClick="location.href=$(\'a.protetta\').attr(\'href\')">Registrati/Accedi</button></center>',  
			'showCloseButton'	: true,
			'centerOnScroll' :  true
			//'onClosed' :  function() {location.href = pagina_login_corrente}
			//'onClosed' :  function() {location.href = $("a.protetta").attr("href")}
	});

	//auth_login.inc.php REGISTRAZIONE
	if($(".form_tipo input:checked").val() != "azi") {
		$(".azienda").parent().parent().css("display","none");
	}
	$(".form_tipo span").click(function(){
		if(!$(this).prev().is(":checked")) {
			$(this).prev().attr("checked","checked");
			$(this).prev().trigger("change");
			
		}
	});

	$("input[name='FORM[tipo]']").change(function(){
		 if ($(this).val() == 'azi') {
			 $(".azienda").parent().parent().css("display","table-row");
		 } else {
			  $(".azienda").parent().parent().css("display","none");
		 }

	});


});		



