// JavaScript Document


// Homepage Slideshow
$(function() {

$(".slidetabs").tabs(".images > div", {

	// enable "cross-fading" effect
	effect: 'fade',
	
	fadeOutSpeed: "slow",
	//fadeOutSpeed: "none",

	// start from the beginning after the last tab
	rotate: true
	
// use the slideshow plugin. It accepts its own configuration  
    }).slideshow({autoplay: true, interval:	6000}); 
});


// Homepage Tabs
$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs("div.panes > div");
});



// Alternate List Colors
$(document).ready(function(){
  $('.graphicList li:nth-child(odd)').addClass('alternate');
  $('.graphicListArrow li:nth-child(odd)').addClass('alternate');
  $('.graphicListMemberList li:nth-child(odd)').addClass('alternate');

});


