$(function() {
	
	// var randomNum = Math.floor(( Math.random()*$("ul.tabs li").size()));
	$("ul.tabs").tabs("div.panes > div", {
		rotate: true
		// initialIndex: randomNum
	}).slideshow({autoplay: true, interval: 8000, clickable: false});
	
	$("ul.tabs2").tabs("div.panes > div");
	
	// $(".audio").click(function(){
	// 	$(this).children('.image').hide();
	// 	$(this).children('.audio-embed').show();
	// 	return false;
	// });
	
	if ($.browser.msie && $.browser.version.substr(0,1)<9) {
	    $(".jp-play").click(function() {
				alert("We're sorry but IE does not support current internet standards. Please upgrade to Google Chrome or Firefox to play the audio.");
			});
	}
	
	// communications form
	
	$("#ministry").change(function () {
		$('.subs').hide();
		var foo = $("#ministry").val();
		var dSelect = foo + '-sub';
		$("#" + dSelect).show();
	});	
});
