/*
 * jQuery panelgallery plugin
 * @author admin@catchmyfame.com - http://www.catchmyfame.com
 * @version 1.2
 * @date September 24, 2009
 * @category jQuery plugin
 * @copyright (c) 2009 admin@catchmyfame.com (www.catchmyfame.com)
 * @license CC Attribution-No Derivative Works 3.0 - http://creativecommons.org/licenses/by-nd/3.0/
 */
// Options
// 
// The following options are configurable:
// 
//     * sections – the number of panels to divine each image into (default: 3)
//     * imageTransitionDelay – the time (in milliseconds) to pause between a completed image and the next image (default: 3000)
//     * startDelay – the time (in milliseconds) to pause before beginning the first transition (default: 2000)
//     * sectionTransitionDelay – the time (in milliseconds) to pause between each section of an image (default: 700)
//     * overlap – the percentage of the sectionTransitionDelay option a section should wait before beginning (0 to 1). For example, if the sectionTransitionDelay is 1000 milliseconds and the overlap is set to .75, then at 750 milliseconds the next section transitions will begin. If you want a section to fully complete before the next section begins, set this to 1. (default: .75)
//     * enablePause – whether or not to pause the animations when the mouse is placed over an image (default 1).
//     * repeat – whether to endlessly repeat the series of images (default: true)
//     * direction – the default direction of the transitions: “lr” (left to right), “rl” (right to left), “tb” (top to bottom), and “bt” (bottom to top) (default: “lr”)
//

			$(function(){
				$('#slides').panelGallery({
					sections:7,
					imageTransitionDelay :3000,
					startDelay:5000,
					sectionTransitionDelay : 700,
					repeat:true
				});
			});

		
