/* JQuery scripts go here */

$(document).ready(function(){	//When document is done loading...



	// Donate Now button
	//
	$('#donateNowButton, #donateNowLink').click(function() {	//When clicked,
		$('#payPalDonationForm').submit();						//submit PayPal form.
	});



	// Home page slideshow
	// (Uses Cycle slideshow jQuery plugin)
	//
	// Fades the slideshow in initially on page ready
    $('#slideshow ul li:first').fadeIn(1000, function() {

    	//Starts the normal slideshow
    	$('#slideshow ul').cycle({
			fx:		'fade',
			speed:	'slow',
			timeout: 5000
		})

	});








});	//End document.ready

