/* ======================== */
/* Reports group javascript */
/* Last updated: 2007/03/15 */ 
/* =========================*/


/* -------------------------------------- */
/* Expand/contract timeline functionality */
/* -------------------------------------- */
$(document).ready(function() {

   	$("#basics-faqs dd.gradient1 div.basics-faqs-header").hover(function() {$(this).css('cursor','pointer')}, function() {$(this).css('cursor','auto')});
	
	$("#basics-faqs dd.expanded div.content").hide();
	$("#basics-faqs dd.expanded").toggleClass("expanded");
	
   $("#basics-faqs dd.gradient1 div.basics-faqs-header").click(function() {
		$(this).parents("dd").find("div.content").slideToggle();
		$(this).parents("dd").toggleClass("expanded");
	});
});

$(document).ready(function() {

   	$("#events-faqs dd.gradient1 div.events-faqs-header").hover(function() {$(this).css('cursor','pointer')}, function() {$(this).css('cursor','auto')});
	
	$("#events-faqs dd.expanded div.content").hide();
	$("#events-faqs dd.expanded").toggleClass("expanded");
	
   $("#events-faqs dd.gradient1 div.events-faqs-header").click(function() {
		$(this).parents("dd").find("div.content").slideToggle();
		$(this).parents("dd").toggleClass("expanded");
	});
});


$(document).ready(function() {

   	$("#archive-months dd.gradient1 div.archive-months-header").hover(function() {$(this).css('cursor','pointer')}, function() {$(this).css('cursor','auto')});
	
	$("#archive-months dd.expanded div.content").hide();
	$("#archive-months dd.expanded").toggleClass("expanded");
	
   $("#archive-months dd.gradient1 div.archive-months-header").click(function() {
		$(this).parents("dd").find("div.content").slideToggle();
		$(this).parents("dd").toggleClass("expanded");
	});
});
