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