$(document).ready(function(){

  var hash = location.hash;
  if (location.hash=="#thanks") {
    $("#cycle-wrap").hide();
    $("#thanks").show();
  }

  $(".cycle").cycle({
    timeout: 0,
    pager: "#nav ul",
    cleartypeNoBg: true,
    pagerAnchorBuilder: function(idx, slide) {
      // return selector string for existing anchor
      return '#nav li:eq(' + idx + ') a';
	  }
  });

  $("#nav a").swoosh();
  $("#nav a").click(function(){
    $("#cycle-wrap").show();
    $("#thanks").hide();
  });

  $("form").validate();

});
