$(document).ready(function() {	
	
	$(".cal-content li").css("cursor", "pointer");
	
	$(".cal-content li")
	.click(function() {
		var info = $(this).children(".info");
		$(this).toggleClass("expanded");
		info.children(".expandable").slideToggle(150);
		return false;
	})	
	.mouseover(function() {
		$(this).addClass("mouseover");
	})
	.mouseout(function() {
		$(this).removeClass("mouseover");
	});
	
	$(".cal-content p.readmore a")
	.click(function() {
		$(this).parents("li").unbind();
	});
});

