function mycarousel_initCallback(carousel) {
				carousel.clip.hover(function() {carousel.stopAuto();jQuery("a.left").show();jQuery("a.right").show();}, function() {carousel.startAuto();jQuery("a.left").hide();jQuery("a.right").hide();});
				jQuery('a.right').bind('click', function() {carousel.next();return false;});
				jQuery('a.left').bind('click', function() {carousel.prev();return false;});

			};
	
jQuery(document).ready(function($) {
		$("#mycarousel").jcarousel({
			auto: 5, 
			wrap: 'last', 
			scroll: 1, 
			animation: 500,
			visible: 1, 
			size: 5,
			initCallback: mycarousel_initCallback
		});
		$("#recentTabs").tabs();
		$(".keyword").css("border","none");
});
