function toggle(which){
	if(which){
		var id = which.attr('id');
		$('#'+id+'_more').show();
		if(!$(which).hasClass('noHide')) $(which).hide();
	}
}

$(document).ready(function(){
	$('.more').hide();
	$('.moreLink').click(function(event){
		event.preventDefault();
		toggle($(this));
	});
});