$(function() {
   var api = $("#flowpanes").scrollable({size: 1, clickable: false, speed:800 }).circular().autoscroll(4000,{autoplay: true}).navigator({ 
				navi: "#flowtabs", 
				naviItem: 'a', 
				activeClass: 'current',
				api: true
			}); 	
	api.onSeek(function() { 	
		//$("#image_caption").fadeIn();		
		$("#image_caption").html(this.getItems().eq(this.getPageIndex()+1).attr("title"));	
	});
		
	$('.current_image').mouseenter(function() {
		$("#image_caption").fadeIn();
		$(".next").fadeIn();
		$(".prev").fadeIn();
		api.stop();
		
	});	
	
	$('.current_image').mouseleave(function() {
		$("#image_caption").fadeOut();
		$(".next").fadeOut();
		$(".prev").fadeOut();
		api.play();
	});	
	
	
});