// JavaScript Document
$(document).ready(function(){
	$("div.hidden").hide();
	
/*		$("p.slide a").click(function(){
		$(this).fadeOut("slow");
		$(this).parent().next().show(2000);
		return false;
	});*/
	
	$("p.slide a").click(function(){
		$(this).fadeOut("slow",function(){
							$(this).text($(this).text() == 'See more' ? 'Hide panel' : 'See more');
		});
		$(this).parent().next().toggle(2000,function(){
			$(this).prev().children("a").fadeIn("slow");
		});
		return false;
	});		
	
});