
/**
 * Funkce pro posouvani videa na uvodni strance
 */
var listing_index = 0;
var listing_item_height = 59;
var listing_show_items = 4;
 
$(document).ready(function()
{
    videobox_listing_init();
});
 
function videobox_listing_init()
{
    $('#videobox_seznam a.dalsi').click(function ()
    {
        var height = $('#videobox_seznam ul').height();
        var max = (height / listing_item_height);
        
        if ((listing_index + listing_show_items + 1) < max)
        {
            listing_index ++;
            top_offset = -(listing_index * listing_item_height) + 'px';
            $('#videobox_seznam ul').animate(
            {
                top: top_offset
            }, 300);
        }
        return false;
    });
    $('#videobox_seznam a.predchozi').click(function ()
    {
        var height = $('#videobox_seznam ul').height();
        var max = (height / listing_item_height);

        if (listing_index > 0)
        {
            listing_index --;
            top_offset = -(listing_index * listing_item_height) + 'px';
            $('#videobox_seznam ul').animate(
            {
                top: top_offset
            }, 300);
        }
        return false;
    });
    $('#videobox_seznam ul li').mouseenter(function ()
    {
        $(this).css('background-image',"url('/images/videobox_nahled_selected.gif')");
    });
    $('#videobox_seznam ul li').mouseleave(function ()
    {
        $(this).css('background-image',"url('/images/videobox_nahled.gif')");
    });
}
