var $ = jQuery;


$(document).ready(function(){

var imgFolderId = 11815; //Presidentes folder in image gallery

$.getJSON("/c/portal/json_service?serviceClassName=com.liferay.portlet.imagegallery.service.http.IGImageServiceJSON&serviceMethodName=getImages&folderId="+imgFolderId+"&serviceParameters=folderId", function(data){

            $.each(data, function(i, item){

            if(i == 0){
            $('#slideshow').append('<div id="img_slideshow" class="active"><img src="/image/image_gallery?img_id='+item.largeImageId+'" title="Ver Galería" /><br/><span>'+item.description+'</span></div>');
            }else{
            $('#slideshow').append('<div id="img_slideshow"><img src="/image/image_gallery?img_id='+item.largeImageId+'" title="Ver Galería" /><br/><span>'+item.description+'</span></div>');
            }
            });

});

$('#slideshow').click ( function(){window.location.href = 'inicio/-/journal_content/56/10124/12309'});


});


function slideSwitch() {

    var $active = $('#slideshow div.active');

    if ( $active.length == 0 ) $active = $('#slideshow div:last');

   // if($active.next().length != 0) $('#slideshow div.active span').text('');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow div:first');


    $active.hide(0).removeClass('active last-active');
    $next.addClass('active').show(0);
}



$(function() {
    setInterval( "slideSwitch()", 5000 );
});
