//Besisikantys -------------------------------------------------------------------------------------------------------------------------
jQuery(function(){

    //rotation speed and timer
    var speed = 2000;
    var run = setInterval('rotate()', speed);

    //grab the width and calculate left value
    var item_height = $('#slides li').outerHeight();
    var bottom_value = item_height * (-1);

    //move the last item before first item, just in case user click prev button
    $('#slides li:first').before($('#slides li:last'));

    //set the default item to the correct position
    $('#slides ul').css({
        'top' : bottom_value
    });

    //if user clicked on prev button
    $('#prev').click(function() {

        //get the right position
        var bottom_indent = parseInt($('#slides ul').css('top')) + item_height;

        //slide the item
        $('#slides ul:not(:animated)').animate({
            'top' : bottom_indent
        }, 500,function(){

            //move the last item and put it as first item
            $('#slides li:first').before($('#slides li:last'));

            //set the default item to correct position
            $('#slides ul').css({
                'top' : bottom_value
            });

        });

        //cancel the link behavior
        return false;

    });


    //if user clicked on next button
    $('#next').click(function() {

        //get the right position
        var bottom_indent = parseInt($('#slides ul').css('top')) - item_height;

        //slide the item
        $('#slides ul:not(:animated)').animate({
            'top' : bottom_indent
        }, 500, function () {

            //move the first item and put it as last item
            $('#slides li:last').after($('#slides li:first'));

            //set the default item to correct position
            $('#slides ul').css({
                'top' : bottom_value
            });

        });

        //cancel the link behavior
        return false;

    });

    //if mouse hover, pause the auto rotation, otherwise rotate it
    $('#slides').hover(

        function() {
            clearInterval(run);
        },
        function() {
            run = setInterval('rotate()', speed);
        }
        );

});

//a simple function to click next link
//a timer will call this function, and the rotation will begin :)
function rotate() {
    $('#next').click();
}



// Navigacija --------------------------------------------------------------------

jQuery(function(){
    jQuery('ul#nav').superfish();

});



//Ligtboksas -------------------------------------------------------------------------
 $(document).ready(function() {




            $("a[rel=lightbox]").fancybox({
                'transitionIn'		: 'none',
                'transitionOut'		: 'none',
                'titlePosition' 	: 'over',
                'overlayOpacity'        : 0.8,
                'overlayColor'          : "#000",
                'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                    return '<span id="fancybox-title-over">Nuotrauka ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
                }
            });


        });

