function navHover(){		
	var lis = document.getElementById('nav').getElementsByTagName('LI');
	
	for(var i=0; i<lis.length; i++){
		lis[i].onmouseover = function(){		
			this.className = 'current';
			
			if(this.getElementsByTagName('UL')[0]){
				var ul = this.getElementsByTagName('UL')[0];
				ul.style.left = 'auto';
			}
			
			for(var a=0; a<lis.length; a++){				
				if(lis[a] != this) { 
					lis[a].className = '';
					if(lis[a].getElementsByTagName('UL')[0]){
						lis[a].getElementsByTagName('UL')[0].style.left = '-999em';
					}
				}
			}
		}
		
		lis[i].onmouseout = function(){
			lis[0].className ='';
		}		
	}
}


function actions(){
	$('.play, .sl_listen a, #mb_jukebox a').bind('click', playAudio);
	$('.video, .sl_video a, #mb_video a').bind('click', playVideo);
}

function playAudio(){
	var id	= $(this).attr('id').split('sermon')[1];
	var url = 'http://my.ekklesia360.com/Clients/sermonaudioplayer.php?CMSCODE=EKK&siteid=2643&sermonid='+id+'&useSkin=skin_plain.xml&CMS_LINK=http://my.ekklesia360.com';
	window.open(url, 'wimpyMP3player', 'width=350,height=140,title=title');
	return false;
}

function playVideo(){
	waspPopup($(this).attr('href'), 320, 240);
	return false;
}

$(document).ready(function(){
	actions();
	navHover();
	$('#footer form').attr('target', '_blank');
	
	$('.external').attr('target', '_blank');
		
	$('#all-messages').click(function(){
		$('#sermon-content').html('').css({height:'300px', background:'url(/images/ajax-loader.gif) no-repeat center center'});
		$.get('/ajax-sermons.php', {
			'groupby':'all',
			'key':'current',
			'val':'current'
		},
		function(o){
			var response = o.split('<!--split-->');
			$('#primaryContent > h2').html(response[0]);
			$('#sermon-content').html(response[1]);			
			$('#sermon-content').html(response[1]).css({height:'auto', background:'none'});			
			$('#current').hide();
			$('.sorter').attr({selectedIndex:0});		
		    Logos.ReferenceTagging.lbsBibleVersion = "ESV";
		    Logos.ReferenceTagging.lbsLinksOpenNewWindow = true;
		    Logos.ReferenceTagging.lbsLibronixLinkIcon = "dark";
		    Logos.ReferenceTagging.lbsNoSearchTagNames = [ "h1", "h2", "h3" ];
		    Logos.ReferenceTagging.tag();	
		    actions();		
		}
		);
		return false;
	});
	
	$('.sorter').change(function(){		
		if(this.selectedIndex != 0){
			$('#sermon-content').html('').css({height:'300px', background:'url(/images/ajax-loader.gif) no-repeat center center'});		
			$.get('/ajax-sermons.php', { 
				'groupby':this.id,
				'key':this.id,
				'val':this.value			
				}, 
				function(o){
					var response = o.split('<!--split-->');
					$('#primaryContent > h2').html(response[0]);
					$('#sermon-content').html(response[1]).css({height:'auto', background:'none'});			
					$('#current').hide();
					$('.sorter').attr({selectedIndex:0});		
				    Logos.ReferenceTagging.lbsBibleVersion = "ESV";
				    Logos.ReferenceTagging.lbsLinksOpenNewWindow = true;
				    Logos.ReferenceTagging.lbsLibronixLinkIcon = "dark";
				    Logos.ReferenceTagging.lbsNoSearchTagNames = [ "h1", "h2", "h3" ];
				    Logos.ReferenceTagging.tag();					
				    actions();
				}
			);
		}
	});		
	
	$('#articleLists').change(function() {
		if(this.selectedIndex == 1) window.location = '/mcms_page_articlelist_sort.php?groupby=series';
		if(this.selectedIndex == 2) window.location = '/mcms_page_articlelist_sort.php?groupby=category';
		if(this.selectedIndex == 3) window.location = '/mcms_page_articlelist_sort.php?groupby=month';
		if(this.selectedIndex == 4) window.location = '/mcms_page_articlelist_sort.php?groupby=author';
	});	
	
});
