/*
 * To be used for SEO optimziation on learn-more links
 */
$(document).ready(function(){

  $(".views-field-view-node img").hover(function(){
    $(this).hasClass("l") ? $(this).hide().next().show() : 0;
  }, function(){
    $(this).hasClass("h") ? $(this).hide().prev().show() : 0;   
  });

});
