$(document).ready(function()
{
	/* Dropdown menus */
	
	$("#calendar-bar ul li").mouseover(function() {
		$(this).addClass("hover");
	}).mouseout(function() {
		$(this).removeClass("hover");
	});
	
	/* Making them keyboard accessible (based off of http://carroll.org.uk/sandbox/suckerfish/bones2.html */

	$("#calendar-bar ul a").each(function() {
		$(this).focus(function() {
			$(this).parent().addClass("hover");
			$(this).parents("li").addClass("hover");
		});
		
		$(this).blur(function() {
			$(this).parent().removeClass("hover");
			$(this).parents("li").removeClass("hover");
		});
	});
});