$(document).ready(function(){		
	$('.shcontent div').click(function(){
		if($(this).next('p').hasClass('hiden'))
		{
			$(this).removeClass('close');
			$(this).addClass('open');
			$(this).next('p').slideDown();
			$(this).next('p').removeClass('hiden');
			$(this).next('p').addClass('show');
		}
		else if($(this).next('p').hasClass('show'))
		{
			$(this).removeClass('open');
			$(this).addClass('close');
			$(this).next('p').slideUp();
			$(this).next('p').removeClass('show');
			$(this).next('p').addClass('hiden');
		}
	});

$('ul.crumblinks li:last').addClass('last');
	$('ul.bloglist li a:nth-child(2)').addClass('comments');
})
