$(document).ready(function(){
// Tax Cards Toggle
	
	// Hide all taxcard-content DIV's
	$('.taxcard-content').hide();	

	// Toggle the taxcard-content DIV's
	$('.taxcard-title').click(function()	{
		$(this).next('.taxcard-content').slideToggle('normal');
	});


	// Add hover class to each Tax Card Title 
	$('.taxcard-title').hover(function()	{
		$(this).addClass('hover');
	},
	function()	{
		$(this).removeClass('hover');
	});
	

// Tax Cards Slideshow
	$('#presentation').after('<div id="presentation-nav">').cycle({
		fx: 'fade',
		pager: '#presentation-nav',
		timeout: 5000,
		speed: 1000,
		pause: 1
	});	
});
