$(function() {
	//home page slideshow	   
	$("#slideshow").cycle(
	{
		fx: 'fade',
		speed: 1000,
		timeout: 8000,
		next:   '#slideNext', 
    	prev:   '#slidePrev'
	});//end	
	
	//expander for chapter pages
  	$('.chapterRightCol p.chapDirector').expander({
		slicePoint: 80,
		expandText: 'View More Info',
		userCollapseText: '<br><br>Collapse Info'
	});	 
	$('.moreContent').expander();//end
	
	//toggle effect for chapter page
	$(".chapDirectorInfo").click(function() {
		$(this).next().toggle();
		return false;
	})
	.next().hide();//end
});

