// <![CDATA[
	if (window.jQuery) {
		$(document).ready( function() {
			$('a.blank').attr('target', '_blank');
			
			$('a[rel*=gallery]').each(function (i) {
				href = $(this).attr('rel');
				href = href.replace('gallery ', '');
				
				$(this).attr('href', href);
			}).colorbox( { slideshow: true } );
			
			$('a[rel*=homedx]').each(function (i) {
				href = $(this).attr('rel');
				href = href.replace('homedx ', '');
				
				$(this).attr('href', href);
			}).colorbox( { slideshow: false } );
			
			$('div#navigation ul li:last').addClass('ultimo');
			
			
			if ($('form#frmRegistrazione').length > 0) {
				if ($('input[name="Tesserato"]:checked').val() == 'Si') {
					$('div#VoglioTesserarmi').hide();
					$('input[name="VoglioTesserarmi"]').addClass('disabled').attr('disabled', 'disabled');
				} else {
					$('div#VoglioTesserarmi').show();
					$('input[name="VoglioTesserarmi"]').removeClass('disabled').removeAttr('disabled');
				};
				
				if ($('input[name="VoglioPartecipareAdEventi"]:checked').val() == 'No') {
					$('div#VoglioPartecipareAdEventi').hide();
					$('input[name="Evento"]').addClass('disabled').attr('disabled', 'disabled');
				} else {
					$('div#VoglioPartecipareAdEventi').show();
					$('input[name="Evento"]').removeClass('disabled').removeAttr('disabled');
				};
				
				$('input[name="Tesserato"]').bind('click', function() {
					if ($('input[name="Tesserato"]:checked').val() == 'Si') {
						$('input[name="VoglioTesserarmi"]').addClass('disabled').attr('disabled', 'disabled');
						$('div#VoglioTesserarmi').slideUp();
					} else {
						$('input[name="VoglioTesserarmi"]').removeClass('disabled').removeAttr('disabled');
						$('div#VoglioTesserarmi').slideDown();
					};
				});
				
				$('input[name="VoglioPartecipareAdEventi"]').bind('click', function() {
					if ($('input[name="VoglioPartecipareAdEventi"]:checked').val() == 'No') {
						$('input[name="Evento"]').addClass('disabled').attr('disabled', 'disabled');
						$('div#VoglioPartecipareAdEventi').slideUp();
					} else {
						$('input[name="Evento"]').removeClass('disabled').removeAttr('disabled');
						$('div#VoglioPartecipareAdEventi').slideDown();
					};
				});
				
				$('button#btnRegistrati').bind('click', function() {
					var valido = true;
					
					$('input[type="text"]:not([class="disabled"])').each(function() {
						if ($(this).val() == '') {
							window.alert('Tutti i campi sono obbligatori!!');
							
							$(this).focus();
							
							valido = false;
							
							return false;
						};
					});
					
				//	if (valido == true) {
				//		$('button#btnRegistrati').addClass('disabled').attr('disabled', 'disabled');
				//	};
					
					return valido;
				});
			};
		} );
	};
// ]]>
