// jquery function to cycle the elements of the #slideshow div as slides
$(function() {
    $('#slideshow').cycle();
});

// jquery function to "fade in" the #slideshow div on page load
$(document).ready(function() {
	$('#slideshow').fadeIn(800);
});