

var g_storiesInPicturesScrollValue = 0;

function ScrollStoriesInPicturesW(in_value)
{
    g_storiesInPicturesScrollValue += in_value;
    var scrollableContentWidth = g_storiesInPicturesDivWidth-$("#storiesInPicturesScrollable").width()

    if(g_storiesInPicturesScrollValue < 0)
    {
        g_storiesInPicturesScrollValue = 0;
    }

    if(g_storiesInPicturesScrollValue > scrollableContentWidth)
    {
        g_storiesInPicturesScrollValue = scrollableContentWidth;
    }

     $("#storiesInPicturesScrollable").animate({scrollLeft: g_storiesInPicturesScrollValue }, 500);
}



function ScrollStoriesInPicturesH(in_value)
{
    g_storiesInPicturesScrollValue += in_value;
    var scrollableContentHeight = g_storiesInPicturesDivHeight-$("#storiesInPicturesScrollable").height()

    if(g_storiesInPicturesScrollValue < 0)
    {
        g_storiesInPicturesScrollValue = 0;
    }

    if(g_storiesInPicturesScrollValue > scrollableContentHeight)
    {
        g_storiesInPicturesScrollValue = scrollableContentHeight;
    }

     $("#storiesInPicturesScrollable").animate({scrollTop: g_storiesInPicturesScrollValue }, 500);
}


$(document).ready(function() {

    // kiszamolja a huszadikkepekben -ben levo kepek szelesseget
    g_storiesInPicturesDivWidth=0;
    $('.termek_div img').each(function(){
        g_storiesInPicturesDivWidth += $(this).width();
    });

    // kiszamolja a huszadikkepekben -ben levo kepek magasságát
    g_storiesInPicturesDivHeight=0;
    $('.termek_div img').each(function(){
        g_storiesInPicturesDivHeight += $(this).height();
    });
});




