$(document).ready(function() {
  $('.whats-new h3 a').each(function(idx) {
    var href = $(this).attr('href');
    $(this).parent("h3").prev('img').click(function() {
      location.href = href;
    }).mouseover(function() {
      $(this).css("cursor", "pointer");
    });
  });
  $('ul.news-list h4 a').each(function(idx) {
    var href = $(this).attr('href');
    $(this).parent("h4").prev('img').click(function() {
      location.href = href;
    }).mouseover(function() {
      $(this).css("cursor", "pointer");
    });
  });
});