// obrazky v detailu referenci

function reference_image_show(id)
{
   $(".ul_ref-img-switch").find('li').removeClass('slc');
   $("#ref_image_li_"+id).addClass('slc');
   $(".ref-img_box").find(".big_images").find('img').hide();
   $("#ref_image_"+id).show();
}

// kontaktni formular

function contact_form_submit(lbox)
{
   $.ajax({
      type: "POST",
      url: "/cs/ajax/contact-send",
      data: {
        name: $("#c_name").val(),
        email: $("#c_email").val(),
        text: $("#c_text").val()
      },
      success: function(msg)
      {
         var resp = msg;
         
         if(resp == 'error_01'){
            $.slideNotice('Vyplňte povinné údaje - jméno, e-mail a text.', { type: 'bad' });
         }
         else if(resp == 'error_02'){
            $.slideNotice('Neplatný e-mail.', { type: 'bad' });
         }
         else if(resp == 'ok'){
            $.slideNotice('Váš dotaz byl odeslán. Děkujeme.', { type: 'good' });
            document.forms['contact_form'].reset();
            if(lbox) lbox_hide('form');
         }
      }
   });
}

// lbox form

function lbox_show(id)
{
   $("#lbox_"+id).show();
}

function lbox_hide(id)
{
   $("#lbox_"+id).hide();
}
