/* ================================================================ 
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").html("show ....");

$(".show").click(function() {
if (this.className.indexOf('clicked') != -1 ) {
		$(this).prev().slideUp(500);
		$(this).removeClass('clicked')
		$(this).html("show ....");
		}
		else {
		$(this).addClass('clicked')
		$(this).prev().slideDown(500);
		$(this).html("... hide");
		}
});

});
