$(document).ready(function () {

  CorrectLayout();
  
  $(".jobform").validate();
  
  var watermark = $("#txtSearch").val();
  $("#txtSearch").focus(function(evObj)
  {
    if ( $("#txtSearch").val() == watermark )
      $("#txtSearch").val("");
  });
  
  $("#txtSearch").blur(function(evObj)
  {
    if ( $("#txtSearch").val() == "")
      $("#txtSearch").val(watermark);
  });
  
  $(window).resize(CorrectLayout);
  
    $('#ImageRotator').cycle({
      fx: 'fade',
      random: 1
  });  
});

function CorrectLayout() {
  $("#Content").css("height", "auto");
  var expectedContentHeight = $(document).outerHeight() - ($("#Header").outerHeight()+$("#Footer").outerHeight());
    
  if ( $("#Content").height() < expectedContentHeight )
    $("#Content").css("height", expectedContentHeight+"px");
}
