$(document).ready(function(){
	$('.slideshow img').show();

    $('.slideshow').cycle({
		fx: 'fade',
		timeout: 8000,
		speed: 2500
	});

	$('#print-button').click(function(){
		window.print(); return false;
	});


	$('#fontSwitch a').click(
		function (e){
			$.stylesheetSwitch($(this).attr('rel'));

			$('#fontSwitch a').removeClass('active');
			$(this).addClass('active');

			return false;
		}
	);
});
