$().ready(function() {
	var feeds = $(".course-feeds li");
	
	feeds.find(".description").each(function() {							 	
		if ($(this).text().length < 60) {
			$(this).parent().remove();
		} else {
			$(this).hide();
		}
	});
	
	feeds.children("a").toggle(function(e) {
		$(this).next().slideDown();
		$(this).parent().addClass("open");
		e.preventDefault();
	}, function(e) {
		$(this).next().slideUp("",function() {
			$(this).parent().removeClass("open");
		});
		e.preventDefault();
	});
				   
});