var paryscrollup = false;
var paryscrolldown = false;

function scrollDownPary()
{
    document.getElementById('pary').scrollTop+=10;
    paryscroll = setTimeout("scrollDownPary();", 100);
}

function scrollUpPary()
{
    document.getElementById('pary').scrollTop-=10;
    paryscroll = setTimeout("scrollUpPary();", 100);
}

function scrollParyStop()
{
    clearTimeout(paryscroll);
}

function scrollRightFotki()
{
    document.getElementById('fotki').scrollLeft+=10;
    fotkiscroll = setTimeout("scrollRightFotki();", 100);
}

function scrollLeftFotki()
{
    document.getElementById('fotki').scrollLeft-=10;
    fotkiscroll = setTimeout("scrollLeftFotki();", 100);
}

function scrollFotkiStop()
{
    clearTimeout(fotkiscroll);
}


