/* Global Navigaiton */
//$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })});

/* Featured Work Scrolling */
jQuery(function( $ ){
   //borrowed from jQuery easing plugin
   //http://gsgd.co.uk/sandbox/jquery.easing.php
   $.easing.backout = function(x, t, b, c, d){
      var s=1.70158;
      return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
   };
   
      
    /* Global Navigaiton */
   $(".lavaLamp").lavaLamp({ 
     fx: "backout",
     speed: 700 
     
   }); 
   

   var query = new Object();
   window.location.search.replace(
   new RegExp( "([^?=&]+)(=([^&]*))?", 'g' ),
      function( $0, $1, $2, $3 ){
         query[ $1 ] = $3;
      }
   );
   easing = query['e'] || 'Expo';
   
   function loadEasing(e) {
      location.href = location.pathname+'?e='+e;
   }
   
   function setEasing(e) {
      loadLamps(e);
   }


});