﻿$(function() {
    markActiveLink();


    $('.ctrlDown').click(function() {
        $(".brandImagesList").stop(true, true).animate({ top: -125 + 'px' }, {
            duration: 700,
            complete: removeLi
        });

    });

    $('.ctrlUp').click(function() {
        addLi();
        $('.brandImagesList').css('top', '-125px');
        $(".brandImagesList").stop().animate({ top: 0 + 'px' }, 700);
    });
});

function removeLi() {
    var liHtml = "<li>" + $('.brandImagesList li:first').html() + "</li>";
    $('.brandImagesList').append(liHtml);
    $('.brandImagesList li:first').remove();
    $('.brandImagesList').css('top', '0');
}

function addLi() {
    $('.brandImagesList').css('top', '0px');
    var liHtml = "<li>" + $('.brandImagesList li:last').html() + "</li>";
    $('.brandImagesList li:last').remove();
    $('.brandImagesList').prepend(liHtml);
}

function markActiveLink() {
    $('#submenu a').filter(function() {
        var currentURL = window.location.toString().split("/");
        return $(this).attr("href") == currentURL[currentURL.length - 1];
    }).addClass("activeItem");
    $('#menuright a').filter(function() {
        var currentURL = window.location.toString().split("/");
        return $(this).attr("href") == currentURL[currentURL.length - 1];
    }).addClass("activeMenuItem");
}
