$(document).ready(function() {
    $('#slider #carousel').cycle({
        random:  false,
        timeout: 7000,
        cleartype:  true,
        cleartypeNoBg:  true,		
        pager:   '#carousel-nav'
    });
    $('#color-options').click(function() {
        $('.tab-content, #tabs li').removeClass('active');
        $('#tab-colors, #color-options').addClass('active');
        return false;
    });
    $('#comments').click(function() {
        $('.tab-content, #tabs li').removeClass('active');
        $('#tab-comments, #comments').addClass('active');
        return false;
    });
    $('#add-comment').click(function() {
        $('.tab-content, #tabs li').removeClass('active');
        $('#tab-add-comment, #add-comment').addClass('active');
        return false;
    });
});

