$(document).ready(function(){
	//Setup the main rotater on the home page
	$('#slider').cycle({
	speed:       1000,
	timeout:     3000,
	pager:		'ul.control',
	next:   '#next',
	prev:   '#prev', 
	pagerEvent: 'click',
	fastOnEvent: false,
	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;
	
}
	
	
function addClass()
{
	document.getElementById('changefont').className = 'text';
}
function changeClass()
{
    
	document.getElementById('changefont').className = 'text_color';
}


