// JavaScript Document
$j(document).ready(function(){

	if (Ka.Info.PAGETYPE == 'List'){
	
		var ChangeChannelTitle = 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'))
	    {
	    	//var h3Text = $('ka_contentContainer').getElementsByTagName('h3')[0].innerHTML;
			if ($('ka_listPage').className.indexOf('group') >= 0 || $('ka_listPage').className.indexOf('GROUP') >= 0){
				$('ka_contentContainer').getElementsByTagName('h3')[0].innerHTML = "Namic National and Namic Chapters";
				$j('ul.ka_searchList .ka_group .ka_searchListDetails .ka_listDetails .ka_listAddComment a').text('Add video, photo, comment and blog post now!');
			}
			
			if($('ka_listPage').className.indexOf('group') >= 0 && $('ka_listPage').className.indexOf('recent') >= 0){
				document.title = "Recent Channels - NAMIC";
				
			}else if($('ka_listPage').className.indexOf('group') >= 0 && $('ka_listPage').className.indexOf('popular') >= 0){
				document.title = "Popular Channels - NAMIC";
				
			}else if($('ka_listPage').className.indexOf('group') >= 0 && $('ka_listPage').className.indexOf('media') >= 0){
				document.title = "Media Channels - NAMIC";
			}
			
	    clearInterval(ChangeChannelTitle);
	    }
	    },20
	    );				
	}
});
