var ERROR =  '<img src="/telefon2010/images/i_error.png" alt="" width="35" height="35" />';
var SUCCESS = '<img src="/telefon2010/images/i_ok.png" alt="" width="35" height="35" />';
$(function() {
  center();
  $(window).bind("resize", center);
  
  $("#form form").validate({
    rules: {
      email: {
        email: true,
        required: true
      },
      video: {
        url: true,
        required: true
      }
    },
    messages: {
      email: {
        email: ERROR,
        required: ERROR
      },
      video: {
        url: ERROR,
        required: ERROR
      }
    },
    success: function(label) {
      label.html(SUCCESS);
    }
  });

});


function center() {
  var dh = $(document).height();
  var wh = $("#wrapper").height();
  wh = 635;
  var ch = (dh - wh) / 2;
  $("#wrapper").css("top", ch + "px");
}

