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

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

function playVideo(){
	window.open('/video.php?video='+$(this).attr('href'), 'videoPlayer', 'width=640,height=480,scrollbars=0,statusbar=0,address=0');
	return false;
}

$(document).ready(function() {
	actions();
	
	// Video Embedding
	if($('.video')){
		var vid = 1;
		$('.video').each(function(){
			
			$(this).before('<div id="video'+vid+'"></div>');
			var url = $(this).attr('onClick').split(',')[0].replace('waspPopup(\'', '').replace('\'','');			
			$(this).remove();			
			var the_video = 's'+vid;					
			var the_video = new SWFObject('/js/player.swf','player','640','360','9');						
			the_video.addParam('allowfullscreen','true');
			the_video.addParam('allowscriptaccess','always');
			the_video.addParam('flashvars','file='+url+'&autostart=false&frontcolor=ffffff&lightcolor=cc9900&skin=http://www.longtailvideo.com/jw/upload/overlay.swf&controlbar=over');
			the_video.write('video'+vid);			
			vid++;			
		});
	}
   
	
	/* SERMON SORTING */			
	
	$('.sorter').change(function(){
		//window.location.hash = this.id+'_'+this.value;
		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();					
					
					// reset sorter selects to first value
					$('.sorter').attr({ selectedIndex:0 })		
				    Logos.ReferenceTagging.lbsBibleVersion = "NIV";
				    Logos.ReferenceTagging.lbsLinksOpenNewWindow = true;
				    Logos.ReferenceTagging.lbsLibronixLinkIcon = "dark";
				    Logos.ReferenceTagging.lbsNoSearchTagNames = [ "h1", "h2", "h3" ];
				    Logos.ReferenceTagging.tag();
					actions();
				}
			);
		}
	});		
	/* END SERMON SORTING */
	
	$('#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';	
	});
	
	$('.external').attr('target', '_blank');
	
});
