//
// Carousel
//
/*
function slideSwitch() {
    var $active = $('#carousel IMG.active');

    if ( $active.length == 0 ){
    	$active = $('#carousel IMG:prev');
    }

    var $next = $active.next().length ? $active.next()
        : $('#carousel IMG:first');

    $next.addClass('active	');

    $next.css({opacity: 1.0})
        .addClass('active')
        .animate({left: '-=100'}, 1000, function() {
            $active.removeClass('active');
        });

        
}

$(function() {
    setInterval( "slideSwitch()", 1000 );
});
*/

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        wrap: 'circular',
        scroll: 1
    });
});
