
$(document).ready(function(){

	// Latest news accordian
	$("#btp-latest-news").accordion();

	// Comments expand
	$('#btp-comments #more-link').toggle(function(){
		$('#btp-comments #comments-expand').slideDown('slow');
		$(this).addClass('up');
		$('#btp-comments #more-link a').html('Less');
		return false;
	}, function(){
		$('#btp-comments #comments-expand').slideUp('slow');
		$(this).removeClass('up');
		$('#btp-comments #more-link a').html('More');
		return false;
	});
	

});

