$(document).ready(function(){
	$('div.hidefirst').hide();
	$('.tagtoggle').click(function()
		{	
		$(this).parent('span').parent('div').next('.shtags').slideToggle("slow");
		return false;
		}
	);
	$('.menutoggle').click(function()
		{	
		$(this).parent('h2').next('.shmenu').slideToggle("slow");
		return false;
		}
	);
	$('.moretoggle').click(function()
		{	
		$(this).parent('p').next('.shmore').slideToggle("slow");
		return false;
		}
	);
});