﻿// Slideshow banner settings

$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade' 
	});

$('#s4')
.before('<div id="nav">')
.cycle({
    fx:     'fade', // choose your transition type, ex: fade,growX scrollUp, shuffle,zoom,turnDown,curtainX,scrollRight etc...
    speed:  '1000', //speed of rotation
    timeout: 6000,  //time it will take to rotate automatically.
	pause: 1, //pause on hover
    pager:  '#nav'
});

});

