$(document).ready(function(){
  // -- colorbox for detail products
	$("a[rel='g1']").colorbox();

  // -- registrace e-mailu k odebirani novinek
  function bEmailReg() {
    var _newsEmail = $('#newsEmail').val();
    
    mail=/^.+@.+\..{2,4}$/;
    if (mail.test(_newsEmail) == false) {
      alert('Vložte Váš e-mail ve správném formátu.');
    }
    else {
      $.ajax
      ({
        type: "POST",
        url: "/rpc.php",
        dataType: "json",
        data: "nAction=1"+"&_newsEmail="+_newsEmail,
        error: function(request, status, error) {
          alert('Error: '+request.responseText+' error: '+error+' status: '+status);
        },
        success: function(data)
        {
          var nError = data["nError"];
          var sError = data["sError"];
          var sInfo = data["sInfo"];
          if (sError != '')
            sInfo = sError;
          //alert(sInfo);
          sInfo = encodeURIComponent(sInfo);
          $.colorbox({title: "Novinky e-mailem", height: "180", href:"/a_showRegEmail.php?sInfo="+sInfo, width:"550"});
          $('#newsEmail').val('');
          //alert(nError);
        } 
      });
    return true;
    }

  }
  $("#btnNewsEmail").click(function (e)
  {
    bEmailReg();
    return false;
  });
});

