$(function() {

	$('#foo2').cycle({
	speed:       1200,
	timeout:     3000,
	pager:		'#foo2_pag',
	next:   '#foo2_prev',
	prev:   '#foo2_next', 
	pagerEvent: 'click',
	fastOnEvent: false,
	pause:		   1,
	sync:		   1, 
	timeoutFn:changeMneyIcoonClass
	});	
	
	
	$('#foo3').cycle({
	speed:       1200,
	timeout:     3000,
	pager:		'ul.control',
	next:   '#next',
	prev:   '#prev', 
	pagerEvent: 'click',
	fastOnEvent: false,
	sync:		   0,
	timeoutFn:changeMneyIcoonClass
	});	
	$('#foo4').cycle({
	speed:       1200,
	timeout:     3000,
	pager:		'ul.control01',
	next:   '#foo4_next',
	prev:   '#foo4_prev', 
	pagerEvent: 'click',
	fastOnEvent: false,
	sync:		   0,
	timeoutFn:changeMneyIcoonClass
	});

	function changeMneyIcoonClass(curr,next,opts)
	{
	var divid=$(next).attr('id');
	divid="li"+divid;
	$("#option_section > ul >li").each
	(
	 	function()
		{
			var currClass=$(this).attr("class");
				$(this).attr("class","");
			
		}
	 );
	 $("#"+divid).attr("class","autoSlide");
	 return 3000;
	}
});
