﻿/* SIDE NAVIGATION ---------------------------------------------*/

$(document).ready(function(){
	$('.adviserScroller ul').cycle({ 
		fx:'turnDown',
		speed:500,
		timeout:8000,
		next:'li.adviserNaviRight',
		prev:'li.adviserNaviLeft',
		random: 1 
	});

	$('.monitorScroller ul').cycle({ 
		fx:'turnDown',
		speed:500,
		timeout:8000,
		next:'li.monitorNaviRight',
		prev:'li.monitorNaviLeft',
		random: 1 
	});

});