/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
$(document).ready(function(){
 
//$(".hidden").hide();
$(".show b").html("");
 
$(".show").click(function() {
if (this.className.indexOf('clicked') != -1 ) {
		$(".hidden").hide();
		$(this).removeClass('clicked')
		$(this).children("b").html("");
		}
		else {
		$(".hidden").hide();
		$(".show").removeClass('clicked');
		$(".show").children("b").html("");
		current = $(this).children("b").attr("class");
		$("#"+current).show();
		$(this).addClass('clicked')
		$(this).children("b").html("");
		}
});
 
});
