/** spotlight **/

$('#spotlight').cycle({
    fx: 'shuffle',
    timeout: 0,
    speed:500,
    next:   '#next', 
    prev:   '#prev'
});

$('#previous-slide').show();
$('#next-slide').show();

function nextX(){
	$('#next').click();
}

setInterval("nextX()",7000);

