// JavaScript Document
$(document).ready(function(){
	$('.readingNow h5').addClass('bookExpand');
	$('.readingNow h5 span').addClass('bookExpandSubTitle');
	
	// hide all the content panes when the page loads
	$('.readingNow > ul').hide();
	
	// uncomment the next line if you'd like the first pane to be visible by default
	//$('.readingNow > ul:first').show();
	
	$('.readingNow h5').click(function() {
	$(this).next().animate( 
		{'height':'toggle'}, 'slow', 'easeOutBounce'
	);
	});
	
	$('.readingNow a.blurbExpand p').addClass('bookblurb');
	
	// hide all the content panes when the page loads
	$('.readingNow a.blurbExpand > p').hide();
	
	// uncomment the next line if you'd like the first pane to be visible by default
	//$('.blurbExpand > p:first').show();
	
	$('.readingNow a.blurbExpand').click(function() {
	$(this).next().animate( 
		{'height':'toggle'}, 'slow', 'easeOutSine'
	);
	});
	
	$("#tabs").tabs();
	
	//lightbox
	
	$('a[rel=lightbox]').colorbox({transition:"fade"});
});	
