jQuery(document).ready(function() {

    /* home page slides */
    jQuery('#slides').cycle();
    jQuery('#slides h2').css({
        'opacity': '0.5',
        'display': 'block'
    }).children('a, span').css('opacity', '1');

    /* featured products pane */
    jQuery('#featured .tabs a').click(function() {
        jQuery('#featured .tab-area .tab').css('display', 'none');
        jQuery('#featured .tab-area .' + jQuery(this).attr('class')).css('display' , 'block');
        jQuery('#featured .tabs li').css('background-position', '0 -32px');
        jQuery(this).parent().css('background-position', '0 0');
    });
    jQuery('.carousel').each(function() {
        jQuery(this).jcarousel({
            scroll : 1
        });
    });
});
