/* JQuery on Function Ready */
$(document).ready(function(){
	/* Center Top Menu */
	$(".menu_inner_center").center();
	/* Load Top 3 Articles */
	$('#top3').cycle({
		fx:'fade', 
		speed:'normal', 
		timeout:9000, 
		pager:'#mainleft-nav'
	});
	$('#scheader').cycle({
		fx:'fade', 
		speed:'normal', 
		timeout:18000, 
		pager:'#scheader-nav'
	});
	$('#displayimg').cycle({
		fx:'fade', 
		speed:'normal', 
		timeout:18000, 
		pager:'#displayimg-nav'
	});
	/* Load Highlight Articles */
	$('#tophl').cycle({
		fx:'fade', 
		speed:'normal', 
		timeout:9000, 
		pager:'#mainleft-nav-hl'
	});
	/* Scrollable Items */
	$("#scrollable").scrollable({ 
		size:3, 
		horizontal:true, 
		speed:300, 
		prev:'.infobox-prev', 
		next:'.infobox-next', 
		navi:'.navi', 
		naviItem:'span', 
		activeClass:'active', 
		items:'.items', 
		onSeek:null
	});
	/* Other Scrollable Items */
	$("#scrollableother").scrollable({ 
		size:3, 
		horizontal:true, 
		speed:300, 
		prev:'.infoboxother-prev', 
		next:'.infoboxother-next', 
		navi:'.navi', 
		naviItem:'span', 
		activeClass:'active', 
		items:'.itemsother', 
		onSeek:null
	});
});