/*
 * 	Photo Showcase
 */
 
$(window).load(function()
{
	//this is intended to wait for all the images to load before running the slideshow
	init_slideshow()
})

init_slideshow = function()
{
	$('#slides').cycle({
		fx:'fade',
		timeout:10000, //this was on 4000 and contols how long each slide stays
	})
}


