// JavaScript for Ovations Vol 4

<!--
$(document).ready(function() {
						   
	//Feature Story Slideshow	
	$('.slideFeature').cycle({ 
		fx:			'fade', 
		speed:		'slow', 
		timeout:	8000, 
		pause:		1 ,
		next:		'#slideNext', 
		prev:		'#slidePrev'
		
	});
	
	//Turn Feature Story Slideshow Nav On
	document.getElementById('slideNav').style.display='block';
	
	$(".toc-hover").hover(function () {
		//do this on hover
		$(this).toggleClass("toc-hover-selected");
		}, function() {
		//do this on hover out
		$(this).removeClass("toc-hover-selected");
	
	});
	
	//click magic goes here
	$(".toc-hover").click(function () {
	var urlToFollow = $(this).find(".articleLink").attr("href");
	window.location = urlToFollow;
	event.preventDefault();
	});

});

//-->

