// -*- coding:utf-8 -*-

$(document).ready(function(){

  
    $("div.box").hover(
      function () {
        $(this).find("a").css("color", "white");
        $(this).css("background", "#999999");
        $(this).css("cursor", "pointer");

      }, 
      function () {
        $(this).find("a").css("color", "black");
        $(this).css("background", "white");
      }
    );
      
    $("div.box").click(function(e) {
      e.preventDefault();
      window.location.href = $(this).find("a").attr("href");
      return true;       
    });

});
