// home page slide settings
$(document).ready(function() {
	$(function() {
		$('#homeslides').cycle({
			fx:     'fade',
			speed:  700,
			timeout: 1500,
			next:   '#nextbtn',
			prev:   '#prevbtn',
			nowrap: 1
		});
	    function onBefore() {
	        $('#title').html(this.alt);
	    }
	});
});

// history settings
$(document).ready(function() {
	$(function() {
		$('#historyslides').cycle({
			fx:     'fade',
			speed:  700,
			timeout: 0,
			next:   '#nextbtn',
			prev:   '#prevbtn',
    			nowrap: 0
		});
	    function onBefore() {
	        $('#title').html(this.alt);
	    }
	});
});


// plant tour settings
$(document).ready(function() {
	$(function() {
		$('#planttour').cycle({
			fx:     'fade',
			speed:  700,
			timeout: 0,
			next:   '#nextbtn',
			prev:   '#prevbtn',
    			nowrap: 0
		});

	    function onBefore() {
	        $('#title').html(this.alt);
	    }
	});
});


