$(document).ready(function(){
    
    var li = $('#CatExclusive');
    var first = $('#CMenu li:first');
    
    if (first.length > 0) {
        li.clone(true).insertBefore(first);
        li.remove();
    }
    
    Cufon.replace('#block_various_links_footer, #header_user #cart_block_top h4, #search_block_top h2, div.block h4, #center_column h2, #primary_block h3.header', {
	textShadow: '1px 1px #556f0b',
        color: 'white'
    });
    
    Cufon.replace('.category_title_exclusive', {
	textShadow: '1px 1px #000000',
        color: 'white'
    });

    $('#cart_block_top').css('display', 'none')

    $('#link_block_cart').click(function() {
        $('#cart_block_top').toggle('normal');
    });

    $('#close_tab').click(function() {
        $('#cart_block_top').toggle('normal');
    });

    $("#promotion_box").easySlider({
            auto: true,
            continuous: true,
            controlsShow: false,
            pause: 5000
    });

    $("#home_slider").easySlider({
            auto: true,
            continuous: true,
            speed: 3000,
            controlsShow: false,
            pause: 5000
    });
    
    $('#CMenu li a').click(function() {
        if($(this).parent('li').children('ul').html() != null) {
            $(this).parent('li').children('ul').toggle('normal');
        } else {
            return true;
        }
        return false;
    });
});
