// JavaScript Document

$(document).ready( function() {
	//hide all descriptions that are not the first element in the collection
	$("ul.collapsable > li:not(:first-child) > div.information").hide();
	
	//turn on first in each download section
	$("ul.collapsable > li:first-child > div.title > a:first-child").addClass("collapse");
		
	$("ul.collapsable > li > div.title > a:first-child").click(function() {
		$(this).parent().siblings("div.information").slideToggle("fast");
		$(this).toggleClass("collapse");
		return false;
	});
	

});