$(document).ready(function() {
  /** 
    * fade an element onmouseover that's tagged with "fadeThis" 
    **/
  $(".fadeThis").mouseover(function(){
      $(this).fadeTo("slow", 0.66);
    }).mouseout(function(){
      $(this).fadeTo("slow", 1);
    });

/**  $("img").lazyload(); **/

});

