﻿// Enable expandable/collapsable boxes
$(document).ready(function() {
	// Click event of link shows/hides sibling div
	$('div.togglebox a.togglelink').click(function() {
		if ($(this).hasClass('togglelink')) {
			$(this).removeClass('togglelink');
			$(this).addClass('togglelink_close');
			$(this).attr('title', 'Hide Information');
		} else {
			$(this).removeClass('togglelink_close');
			$(this).addClass('togglelink');
			$(this).attr('title', 'Show Information');
		}
		$(this).parent().siblings("div.togglecontent").slideToggle('fast');
		return false;
	});
});