var IMGcache=null;

$(document).ready(function () {
    $('.abajo').click(function(e){
        e.preventDefault();
        changeCarousel(-1);
    });
    $('.arriba').click(function(e){
        e.preventDefault();
        changeCarousel(1);
    });
});

function changeCarousel(obj)
{
    var id=$(obj).attr('id');
    var father=id.substr(0, id.indexOf("_"));
    id=id.substr( id.indexOf("_")+1);
    if (IMGcache==null)
    {
        $.getJSON("?s=catalogo/get_list/"+father,function(data){
            IMGcache=data; realChange(id);
        });
    }
    else
        realChange(id);
}

function realChange(id)
{
    for (var i=0;i<IMGcache.length;i++)
    {
        if (IMGcache[i].id==id)
        {
            break;
        }
    }
    $('.pantalla img, .p_descripcion').fadeOut(function(){
        $('.pantalla img').attr('src','./productos/'.concat(IMGcache[i].img1));
        $('.p_descripcion').html(IMGcache[i].descripcion);$('.pantalla img, .p_descripcion').fadeIn();
    })
}


