$(document).ready(function () {

    $("#slider").easySlider({
        auto: true,
        continuous: true,
        numeric: false,
        pause: 4000
    });


    $('.mandatory').after('<span class="mandatory-symbol">*</span>');

    $(".products-in-action").easySlider({
        auto: true,
        continuous: true,
        numeric: false,
        pause: 6000
    });

    $("#subcatmenu a").each(function() {
        if (window.location == 'http://www.saltopeppar.se/new/kategori/T-shirts') {
            $(this).css("color", "#ed353a");
        }
        if (window.location == 'http://www.saltopeppar.se/new/kategori/Klockor') {
            $(this).css("color", "#e7c63f");
        }
        if (window.location == 'http://www.saltopeppar.se/new/kategori/Solglasogon') {
            $(this).css("color", "#cd00ff");
        }
        if (window.location == 'http://www.saltopeppar.se/new/kategori/Vaskor') {
            $(this).css("color", "#88ff04");
        }
        if (window.location == 'http://www.saltopeppar.se/new/kategori/Planbocker') {
            $(this).css("color", "#6deefd");
        }
        if (window.location == 'http://www.saltopeppar.se/new/kategori/Ovrigt') {
            $(this).css("color", "#f07136");
        }
    });

    $('.js-currency-button').click(function(event){
        var id = $(this).attr('data-id');
        $.cookie(
            'CustomCurrency',
            id,
            {'path': BASE_URL}
        );
    });

    $('.switcher').bind('click', function() {
        $(this).find('.option').slideToggle('fast');
    });
    $('.switcher').bind('mouseleave', function() {
        $(this).find('.option').slideUp('fast');
    });


});

