var t_div = new Array(); 
t_div[0] = "div_01"; 
t_div[1] = "div_02"; 
t_div[2] = "div_03"; 
t_div[3] = "div_04"; 
t_div[4] = "div_05"; 

var t_randomnumber = Math.floor(Math.random()*(t_div.length));

var t_id_current = t_randomnumber;


function t_majDiaporama ()
{

	//reference to current div
	var t_cur_div = t_div[t_id_current];

	//set marker T
	if (t_id_current < (t_div.length-1)){
		t_id_current++;
	} else {
		t_id_current = 0;
	}

	
	//reference to next div T
	var t_next_div = t_div[t_id_current];

	//fade out old div T
	new Effect.Fade(t_cur_div,{duration:2});



	//fade in new div T
	new Effect.Appear(t_next_div,{duration:2});

	//reset hight of quote box to height of next quote
	document.getElementById(t_cur_div).style.position = 'absolute' ;
	document.getElementById(t_cur_div).style.width = "163px";
	document.getElementById(t_next_div).style.position = 'relative' ;


	//window.setTimeout("t_majDiaporama()",7500);
}


function showLinks(){

	var i=0;
	for (i=0; i<t_div.length; i++){
		Element.setOpacity(t_div[i], 0.0);
		document.getElementById(t_div[i]).style.visibility='visible';
	}


	document.getElementById(t_div[t_id_current]).style.position = 'relative' ;
	document.getElementById(t_div[t_id_current]).style.width = "163px";

	new Effect.Appear(t_div[t_id_current],{delay:0});

	//window.setTimeout("t_majDiaporama()",7500);

}

