function customInit() {
	
$('#section-1 .navigation ul li div').append('<span class="pointer"></span>');

$("#section-1 div.scrollable").scrollable({ circular: true}).navigator({

		// select #flowtabs to be used as navigator
		navi: "#section-1 .navigation",

		// select A tags inside the navigator to work as items (not direct children)
		naviItem: 'div',

		// assign "current" class name for the active A tag inside navigator
		activeClass: 'current',

		// make browser's back button work
		history: false

	}).autoscroll({
	interval:10000
});



	
		}
		
			
