jQuery(document).ready(function ($) {
  $("div.default").mouseover(function() {
      $(this).css('cursor', 'hand');
    }).mouseout(function(){
      $(this).css('cursor', 'pointer');
    });      
});

jQuery(".default").click(function ($) { 
       location.href = "/contact";
    });
