$(document).ready(function() {
/*Home Tabs*/
    $('#hLatestLists').tabs({ fxSlide: true, fxFade: true, fxSpeed: 100 });

/*Service Times*/
	$('#servicetimes').hide();
	$('a#timesToggle').click(function() {
	$('#servicetimes').slideToggle('medium');
  	return false;
	});

/*Table Striping for Message Library*/
	$("#messages tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$("#messages tr:odd").addClass("alt");
	
/*Table Striping for Member Directory*/
	$("#memberTable tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$("#memberTable tr:odd").addClass("alt");

/*Podcast Instructions*/
	$('#podcast').hide();
	$('a#learnPodcast').click(function() {
	$('#podcast').slideToggle('medium');
	return false;
	});
  
/*Open in new window*/
	$("a[@rel='external']").click(function(){window.open(this.href); return false;});	
	});

/*Message popup window*/
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
