$(document).ready(function() {
	$(".more").click(function() {
			$(this).prev().slideToggle();
			if($(this).html() == '<a href="#">Read more…</a>'){
				$(this).html('<a href="#">Collapse Text</a>');
			}else{
				$(this).html('<a href="#">Read more...</a>');
			}
			return false;
	});
	$(".leftbar ul li").click(function() {
			$(this).children()[0].click();
	});
});
