/* Author: Bravo Web Solutions

*/



$(document).ready(function() {

	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 0, 
		pager:  '#slideshow-nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#slideshow-nav li:eq(' + idx + ') a'; 
		} 
	});

    $('#full-slideshow').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 10000
	});

});




















