var EZ_slideInterval = null;
var EZ_slideDelay = 5000;
var EZ_slideInitDelay = 30000;

function EZ_startSlideShow(){
    clearInterval(EZ_slideInterval);
    EZ_slideInterval = setInterval(function(){
		EZ_runSlideShow();
	}, Math.max(1,EZ_slideInitDelay - EZ_slideDelay));
}

function EZ_runSlideShow(){
    clearInterval(EZ_slideInterval);
    EZ_slideInterval = setInterval(function(){
		creddeckapi.next()
	}, EZ_slideDelay);
}

$(document).ready(function(){
	EZ_startSlideShow();

    $('#cred-deck').click(function(){
        EZ_startSlideShow();
    });

});