jQuery.noConflict();
jQuery(document).ready(function(){
    
     jQuery("ul.portfolio-grid li").hover(
          function() {
               jQuery(this).stop().fadeTo("fast", .7);
          },
          function() {
               jQuery(this).stop().fadeTo("fast", 1);
     });
    
});


