var navDuration = 150; //time in miliseconds
      var navJumpHeight = "0.45em";

      $('#prime-nav li a').hover(function() {
          $(this).animate({ top : "-="+navJumpHeight }, navDuration);            
      }, function() {
          $(this).animate({ top : "15px" }, navDuration);
      });
	  
	        $(document).ready(function() {

        //  nav tab animation  
        var navDuration = 250; //time in miliseconds
        var navJumpHeight = "15px";

        $('#prime-nav li').hover(function() {
            $(this).animate({ top : "-="+navJumpHeight }, navDuration);            
        }, function() {
            $(this).animate({ top : "0px" }, navDuration);
        })
		        
        $('.see_code').click(function() {
          if($(this).parent().next().is(':visible')) {
            $(this).html('+ Show Code');
            $(this).parent().next().toggle();
          } else {
            $(this).html('- Hide Code');
            $(this).parent().next().toggle();            
          }
          return false;
        });
        
      });
