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

$(document).ready(function(){


    $("table.calendar td.marking").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", "lightgray");
      }
    );


    $("table.calendar td.marking").click(function(e) {
	    e.preventDefault();
	    window.location.href = $(this).find("a").attr("href");
	    return true;       
    });

      

});
