$(document).ready(function() { 
	$("#main-slideshow").crossSlide(
		{ sleep: 8, fade: 3 }, 
		[ 
			{ src: "/P/images/rotating/img1.jpg", alt: "Providence" }, 
			{ src: "/P/images/rotating/img2.jpg", alt: "Providence" }, 
			{ src: "/P/images/rotating/img3.jpg", alt: "Providence" }, 
			{ src: "/P/images/rotating/img4.jpg", alt: "Providence" },
			{ src: "/P/images/rotating/img5.jpg", alt: "Providence" }
		]
	);
	
	$("ul#sub-nav li").mouseover(function(){
		$(this).addClass("active");
	});
	$("ul#sub-nav li").mouseout(function(){
		$(this).removeClass("active");
	});
	
	// Highlight the current page in the sub-nav.
	var mypath = window.location.pathname + window.location.search;
	$("ul#sub-nav li a").each(function() {
		if ($(this).attr('href') == mypath) {
			$(this).parent().addClass("current");
		}
	});
});

