/*
 *	slideshow.js
 *	------------
 *	Copyright (c) 2011 Wabbit Web Works
 *	All Rights Reserved
 *
 *	Slideshow config for the carouFredSel jQuery plug-in
 *
 *
 *	This programme is free software: you can redistribute it and/or modify
 *	it under the terms of the GNU General Public Licence as published by
 *	the Free Software Foundation, either version 3 of the Licence, or
 *	(at your option) any later version.
 *
 *	This programme is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU General Public Licence for more details.
 *
 *	You should have received a copy of the GNU General Public Licence
 *	along with this programme.  If not, see <http://www.gnu.org/licenses/>.
 */
$(function() {
    $('#slideshow').carouFredSel({
	width: 400,
	height: 210,
	direction: 'down',
	items: {
	    start: -1
	},
	auto: {
	    pauseDuration: 10000
	},
	scroll: {
	    easing: 'easeOutBounce',
	    duration: 750,
	    pauseOnHover: true
	}
    }).css('visibility','visible').hide().fadeIn(1000);
});

