$(document).ready(function(){

  // Enable animation positioning
  $("body").addClass('jq');

  // Set up content buckets
  $(".jq .univpad").hide();

  // Add animation hooks
  $(".jq #openbtn").click(function(){
     $("#about").animate( { left: "-280px" }, "slow", function () {
        $("#aboutC").fadeIn("fast");
     });
     $("#contact").animate( { left: "280px" }, "slow", function () {
        $("#contactC").fadeIn("fast");
     });
     $("#home").fadeOut("slow", function () {
        $("#networkC").fadeIn("fast");
     });
     return false;

  });

  $(".jq .closebtn").click(function(){
     $(".univpad").fadeOut("slow");
     $("#home").fadeIn("slow", function () {
        $(".univpad").fadeOut("slow");
     });
     $("#about").animate( { left: "0px" }, "slow" );
     $("#contact").animate( { left: "0px" }, "slow" );
     return false;
  });

});