$(document).ready(

function () {
	$('.moreDesc').click(function() {
		$(this).parent().addClass('textOff');
		$(this).parent().parent().find('.remainder').removeClass('remainder');  	
			});
	
  $('.catList').click(function() {
		$('#catList').find('.categories').toggleClass('textOff');
		$(this).toggleClass('open');
			});
	$('.relatedList').click(function() {
		$('#relatedList').find('.categories').toggleClass('textOff');
		$(this).toggleClass('open');
			});


	$('.moreabout').click(function() {
					$(this).hide().parent().find('.aboutusText').addClass('moreText');
		});

}
);

