// JavaScript Document
$j(document).ready(function(){

	if (Ka.Info.PAGETYPE == 'Group'){
		
		 var addMessageBoardTitle = setInterval
	    (
	    /* create an anonymous function to run the code */
	    function() {
	    /* check if the function '$' exists (since we need to use it) and that
	    the container has been loaded (second condition) */
	    if(typeof $!='undefined' && $('ka_contentContainer'))
	    {
	    
		/*Change text */
		$('ka_groupProfile').getElementsByTagName('h3')[0].innerHTML = "<span>Chapter Profile</span>";
		$('ka_otherGroup').getElementsByTagName('span')[0].getElementsByTagName('a')[0].innerHTML = "more chapters"
		$('ka_otherGroup').getElementsByTagName('h3')[0].innerHTML = "<span>Other Chapters</span>";
		
		if(Ka.Info.USERNAME == ""){
			$('ka_joinButton').getElementsByTagName('input')[0].value = "log in to join this chapter";
		}else{
			$('ka_joinButton').getElementsByTagName('input')[0].value = "join this chapter";
		}
		
		/*var temp = $('ka_groupMember').getElementsByTagName('div')[0].innerHTML;
		temp.replace("group","chapter");
		$('ka_groupMember').getElementsByTagName('div')[0].innerHTML = temp;*/
		
	    clearInterval(addMessageBoardTitle);
	    }
	    },20
	    );
	}
});
