google.load("jquery", "1.4.2");

google.setOnLoadCallback(function() {

  $('#samples ul li img, img.size-large').hover(function(){
  $(this).css('cursor','pointer');
  $('#samples ul li a, #content .imageholder a.lightbox').css('background','#666666 url(http://www.matthewsharpe.com/wp-content/themes/matthewsharpe.com/images/portfolio_linkcover.gif) top right no-repeat');
  $('#content a.lightbox').css('margin','0');
  $(this).stop().animate({ "opacity" : 0.6 }, 100);
  },function(){ 
	  $(this).stop().animate({ "opacity" : 1 }, 100);
  });
$('ul#projectlist a').animate({ opacity: 0.9 }, 0);  
 $('ul#projectlist a').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 1.0 }, 100);
            },
           function() {
               $(this).stop().animate({ opacity: 0.9 }, 100);
           });
        });
  
});
