
/**
 * This is the callback function which receives notification
 * right after initialisation of the carousel
 */
function carousel_initCallback(carousel, state) {
    if (state == 'init') {
		$('#news_items_container').css({"overflow":"visible"})
	}
};


jQuery(document).ready(function() {
    jQuery('#news_items').jcarousel({
		scroll: 3,
		initCallback: carousel_initCallback
	});
});

