
  /* Modified by Alex Spooner, 2009-06-12 04:36:28 EST */
  
  $(document).ready(function(){

    flashembed("flash_content", {src: "flashes/index.swf", wmode: 'opaque'});
    $("#req").fadeIn();
    
    $(":input").focus(function(){
      $(this).select();
    });

    $("#signupbtn").click(function(event){
      event.preventDefault();
      $(this).blur();
      $("#register").submit();
    });

    $("#register").submit(function(){
      $("#req").fadeOut(function(){
        $("#req").hide();
        var fields = $("#register").serialize();
        $.getJSON("/ajax/ccontact.php", fields, function(data){
          if (data.success==true) {
            $("#res h2").html("Thank you!");
            $("#res a").hide();
          }
          else $("#res h2").html(data.error);
          $("#res").fadeIn();
        });
      });
      return false;
    });
  
    $("#back").click(function(event){
      event.preventDefault();
      $(this).blur();
      $("#res").fadeOut(function(){
        $("#req").fadeIn();
      });
    });

  });