jQuery(document).ready(function() {
    var container = jQuery('#news .news-list');
    if (jQuery('li', container).length > 0)
    {
        container.carousel({
            'loop' :true,
            'pagination' : true,
            'prevBtn' : null,
            'effect' : 'slide',
            'direction': 'horizontal',
            'dispItems' : 1,
            'autoSlide' : true,
            'autoSlideInterval' : 4000,
            'slideEasing' : 'swing',
            'animSpeed' : 300,
	    'height' : '225'
        });
    }
});


