// -------------------------------- //
// Calendar pop-up descriptions.    //
// -------------------------------- //
// Author: rachel@dollypower.com    //
// -------------------------------- //

// Document ready
//$(document).ready(function() {		
Sys.Application.add_load(function() {	
	// Change the title into an anchor
	$(".title").wrapInner("<a></a>");
	
	// Add close link to description
	$(".description").append("<a class='close float-right'>Close (x)</a>");
	
	// Show description on title click
	$(".title").bind("click", function() {
		// Hide any open descriptions for other entries
		$(".description").hide();							   
		$(this).next(".description").fadeIn("slow");
	});
	
	// Hide description on close click
	$(".close").bind("click", function() {
		$(".description").hide();
	});	
	
}); // End script
