/*!
 *  Expandable Content
 *
 */
 
$(function(){

  $(".collapsible")
    .find("h2, h3")
      .click(function(){
      
        if ($(this).hasClass("expanded")){
          $(this).removeClass("expanded").next().slideUp("fast");
        }
        else {
          $(this).addClass("expanded").next().slideDown("fast");        
        }
      
      })
    .next().hide();

});


/*! 
 *  Form Validation
 *
 */
 
$(function(){
  
  var $theForm = $(".form");
  
  $theForm.validate({
    submitHandler: function(form) {
      $(form).ajaxSubmit({
        target: "#feedback",
        resetForm: true
      });
    }
  });
  
  $theForm.find("input, select").not("input[type=submit]").focus(function(){
    $("#feedback").text("");
  });
  
});


/*! 
 *  Scrolling Anchors
 *
 */
 
$(function(){
  $.localScroll({
    easing: "easeInOutExpo"
  });
});



