$(document).ready(function () {

    $(document).pngFix();

    /* Tab Tecnici */
    $('#tab_content').tabs();

    /*Plus Discovery */
    /*$(".plus_button").fancybox();	*/

    $(".plus_button").fancybox({
        'transitionIn': 'fade',
        'transitionOut': 'fade',
        'speedIn': 500,
        'speedOut': 200,
        /*'easingIn'      : 	'easeOutBack',*/
        'easingOut': 'easeInBack',
        'overlayShow': true,
        'padding': 20
    });

    $('#PlusDiscovery').cycle({
        fx: 'fade',
        speed: 'fast',
        timeout: 0,
        next: '#next',
        prev: '#prev',
        pause: true
    });


    $("#privacy").fancybox({
        'width': '60%',
        'height': '60%',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
    $("#form_privacy").fancybox({
        'width': '60%',
        'height': '60%',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });


    $('#credits').fancybox();
    $('#map_area').fancybox();


    $('#cmdSend2').click(function () { return iscrizione_newsletter(); });

});

function iscrizione_newsletter() {

    var reg_exp = /^([a-zA-Z0-9_.,àòè éùì])+$/;
    var reg_num = /^([0-9_ -])+$/;
    var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

    $('#c_Name2').removeClass('nocompiled');
    $('#c_Surname2').removeClass('nocompiled');
    $('#c_Email2').removeClass('nocompiled');
    $('#c_Privacy2').removeClass('nocompiledcheck');
        
    var IsToSend = 1;

    if (($('#c_Name2').val() == "") || ($('#c_Name2').val() == "undefined")) { IsToSend = 0; $('#c_Name2').addClass('nocompiled'); }
    //else if (!reg_exp.test($('#c_Name2').val())) { IsToSend = 0; $('#c_Name2').addClass('nocompiled'); }

    if (($('#c_Surname2').val() == "") || ($('#c_Surname2').val() == "undefined")) { IsToSend = 0; $('#c_Surname2').addClass('nocompiled'); }
    //else if (!reg_exp.test($('#c_Surname2').val())) { IsToSend = 0; $('#c_Surname2').addClass('nocompiled'); }

    if (($('#c_Email2').val() == "") || ($('#c_Email2').val() == "undefined")) { IsToSend = 0; $('#c_Email2').addClass('nocompiled'); }
    else if (!email_reg_exp.test($('#c_Email2').val())) { IsToSend = 0; $('#c_Email2').addClass('nocompiled'); }

    if (!$('#c_Privacy2').is(':checked')) { IsToSend = 0; $('#c_Privacy2').addClass('nocompiledcheck'); }

    if (IsToSend == 1) {
        var dataString = 'f=nl&n=' + $('#c_Name2').val() + '&s=' + $('#c_Surname2').val() + '&e=' + $('#c_Email2').val();
        var xhr = $.ajax({
            type: "POST",
            url: "/popup.aspx",
            data: dataString,
            success: function (data, status) {
                document.location.href = '/';
            }
        });
     }


    return false;
}








