var a = 1;
function fades()
{	

		
		b = a.toString();
		b = 'testimonials_'+b;

		Effect.Fade(b);
	
	a = a + 1;
	if (a > 4)
	{
		a = 1;
	}
	b = a.toString();
	b = 'testimonials_'+b;
	setTimeout('fadesAppear(b)', 1000);

		
}
function fadesAppear(b)
{
		
		
		
		Effect.Appear(b);
}



var a1 = 1;
function fades1()
{	

		
		b1 = a1.toString();
		b1 = 'testimonials_'+b1;

		Effect.Fade(b1);
	
	a1 = a1 + 1;
	if (a1 > 8)
	{
		a1 = 1;
	}
	b1 = a1.toString();
	b1 = 'testimonials_'+b1;
	setTimeout('fadesAppear1(b1)', 1000);

		
}
function fadesAppear1(b1)
{
		
		
		
		Effect.Appear(b1);
}





function mainSelectionOn(id){
	
	document.getElementById(id).style.background = "url(\'images/main_selection_bg.gif\') repeat-x";
	document.getElementById(id).style.color = '#ffffff';
	
}

function mainSelectionOff(id){
	
	document.getElementById(id).style.background = '#ffffff';
	document.getElementById(id).style.color = '#616161';
	
	
}