/*
 * Slideshow Functions
 */
 
$(window).load(function()
{
	init_slideshow()
})

init_slideshow = function()
{
	$('#slides').cycle({
		fx:'fade',
		timeout:4000
	})
}
