/**
 * @author batman
 */
$(document).ready(

	function(){
		
		$('.content_box:last').addClass('content_box_last');
		$('#rivista_arretrati li:last').css('width', 120);
		$('#laboratori_galleria li a:last').css('margin', 0);
		
		//$('.rivista_articolo_leggi_link a, #header_sfoglia a, ._bkp_20100415_fumetto_singolo a:not(".standard_link"), ._bkp_20100415_autore_fumetto').fancybox(
		$('.rivista_articolo_leggi_link a:not(".standard_link"), #header_sfoglia a, .fumetto_singolo a:not(".standard_link"), .autore_fumetto').fancybox(
			{
				'frameWidth': 606,
				'frameHeight': 406
			}
		);

		// registazione commenti della pagina eventi
		$('#evento_invia').click(
			function() {
				
				if($('#evento_nome').val() && $('#evento_commento').val()) {
					$.ajax(
						{
							type: "GET",
							url:'../../../pages/ajax/ajax_eventocommento.php',
							data:'evento_nome=' + $('#evento_nome').val() + '&evento_email=' + $('#evento_email').val() + '&evento_commento=' + $('#evento_commento').val() + '&evento_ID_ref=' + $('#evento_ID_ref').val(),
							success: function(msg) {
								$('#evento_nome, #evento_email, #evento_commento, #evento_invia').attr('disabled', true);
								$('#laboratori_disclaimer').append(' Abbiamo registrato il tuo commento. Tra poco sarà pubblicato. Grazie!');
							}
						}
					);
				}
			}
		);

		// registazione newsletter
		//$('#newsletter_invia').click(
		$('#subscribe').submit(
			function() {
				
				//if ($('#nl_nome').val() && $('#nl_cognome').val() && $('#nl_vianumero').val() && $('#nl_cap').val() && $('#nl_citta').val() && $('#nl_email').val() && $('#nl_cellulare').val()) {
				if ($('#nl_nomecognome').val() && $('#nl_vianumero').val() && $('#nl_cap').val() && $('#nl_citta').val() && $('#nl_provincia').val() && $('#nl_email').val() && $('#nl_cellulare').val()) {
					if($('#nl_privacy').is(':checked')) {
						/*
						$.ajax({
							type: "GET",
							url: '../2009/pages/ajax/ajax_newsletter.php',
							data: 'nl_nome=' + $('#nl_nome').val() +
							'&nl_cognome=' +
							$('#nl_cognome').val() +
							'&nl_vianumero=' +
							$('#nl_vianumero').val() +
							'&nl_cap=' +
							$('#nl_cap').val() +
							'&nl_citta=' +
							$('#nl_citta').val() +
							'&nl_email=' +
							$('#nl_email').val() +
							'&nl_cellulare=' +
							$('#nl_cellulare').val(),
							success: function(msg){
								$('#nl_nome, #nl_cognome, #nl_vianumero, #nl_cap, #nl_citta, #nl_email, #nl_cellulare').attr('disabled', true);
								$('#laboratori_disclaimer').append(' Abbiamo registrato la tua iscrizione. Presto riceverai la nostra newsletter. Grazie!');
							}
						});
						*/
						return true;
					}
					else {
						alert('Hai letto l\'informativa sulla privacy?');
						return false;	
					}
				}
				else {
					alert('Hai compilato tutti i campi?');
					return false;
				}

			}
		);
		
		
		$('#unsubscribe').submit(
			function() {
				
				if ($('#nl_email').val()) {
					if($('#nl_privacy').is(':checked')) {
						return true;
					}
					else {
						alert('Hai letto l\'informativa sulla privacy?');
						return false;	
					}
				}
				else {
					alert('Hai compilato tutti i campi?');
					return false;
				}

			}
		);


		// mostra box privacy
		$('#leggi_privacy').click(
			function() {
				$('#privacy_testo').slideToggle();
				return false;
			}
		);
		
		
		// mostra l'id articolo, se c'è
		if($('#hidden_ID_riv').length>0) {

			var the_id = '#rivista_articolo_leggi_link_' + $('#hidden_pagina').val();
			var href = $('#hidden_href').val();

			$(the_id).fancybox(
				{
					href: href,
					'frameWidth': 606,
					'frameHeight': 406
				}
			);

			$(the_id).trigger('click');

	
		}

	}

);
