
     jQuery(function(){
          // Apply superfish to the navigation menu
          $('body div#canvas ul#menu').superfish();
          
          // Setup portfolio page  image hovers
          $('body#home div.portfolio-pics span').hover(function() {
            // onmouseover
            $(this).children('img.showme').fadeOut(300);
            $(this).children('img.nocss').fadeIn(300);
          }, function() {
            // onmouseout
            $(this).children('img.showme').fadeIn(500);
            $(this).children('img.nocss').fadeOut(500);
          });

          // Setup company / about page  image hovers
          $('body#company div.portfolio-pics span').hover(function() {
            // onmouseover
            $(this).children('img.showme').fadeOut(300);
            $(this).children('img.nocss').fadeIn(300);
          }, function() {
            // onmouseout
            $(this).children('img.showme').fadeIn(500);
            $(this).children('img.nocss').fadeOut(500);
          });

      });
      