﻿$(window).load(function(){

$('.slideshow').cycle({ 
    fx:     'scrollLeft', 
    easing: 'backinout', 
	timeout: 8000,
    delay:  -2000 
});
 
    function onAfter() { 
        $('.slideshow-output').html(this.title);
		$('.slideshow-title').html(this.alt);
    }
	
	$('.sad-slideshow').cycle({ 
    fx:     'fade', 
	random:  1,
	timeout: 6000,
    delay:  -2000 
});
 
    function onAfter() { 
        $('.sad-slideshow-output').html(this.title);
		$('.sad-slideshow-title').html(this.alt);
    }
	 
});
