
function lboxBindNotify(target){
  $(target).each(function(){
    $(this).click(function(e){
      e.preventDefault();
      lboxShow("#lboxContent_notifyForm");
    });
    $("#lboxContent_notifyForm .close").unbind("click").click(function(e){
      e.preventDefault();
      lboxHide("#lboxContent_notifyForm");
    });
  });
}

function setupNotifyForm(){
  setupFormClose("#lboxContent_notifyForm .close","#lboxContent_notifyForm");
  $("#lboxContent_notifyThanks .close").unbind("click").live("click",function(e){
    e.preventDefault();
    lboxHide("#lboxContent_notifyThanks");
  });
  $("#lboxContent_notifyForm .sendImg").unbind("click").live("click",function(e){
    e.preventDefault();
    if (!validateDefaultForm("#notifyForm")) return;
    $.post($("#notifyForm").get(0).action, $("#notifyForm").serialize(), function(d, status){
      $("#lboxContent_notifyForm").hide();
      lboxShow("#lboxContent_notifyThanks");
    });
  });
}

setupNotifyForm();



