$(document).ready(function() { 

	$('.datedropdown dt').hover(function() {
  	 	$(this).addClass('dthover');
  	}, function() {
   		$(this).removeClass('dthover');
  	});
  	
	$(".datedropdown dt").click(function() {
		$(".datedropdown dd").toggle();
	});
	
   $(document).bind('click', function(e) {
        var $clicked = $(e.target);
        if (! $clicked.parents().hasClass("datedropdown"))
            $(".datedropdown dd").hide();
    });
    
    $("input[type='checkbox']").css({"border": "0"});
});

