// Speed of toggle, can be time in ms or slow, normal or fast
var toggleSpeed = "slow";

// Toggles a div given by ID
function toggleDiv(divId) {
	jQuery("#"+divId).slideToggle(toggleSpeed);
}

// Hide the toggleable divs onLoad
jQuery(function() {	
	jQuery("div.toggleable").css({
		"position": "static",
		"display": "none"
	});
});
