

//------------------------------------------------
var trans = new Array('linear', 'swing');
var trans_names= new Array('Sine', 'Quad', 'Cubic', 'Quart', 'Quint', 'Expo', 'Circ',  'Back', 'Bounce', 'Elastic' );
var str0;
var xed;
for(xed=0;xed<trans_names.length;xed++){
	str0=trans_names[xed];
	trans.push('easeIn'+str0, 'easeOut'+str0, 'easeInOut'+str0);
}
function randomTransition(){
	var str0=trans[Math.round(Math.random()*(trans.length-1))];
   	//if(str0=='easeInElastic'){
	  // 	str0='easeOutElastic';
   //	}	
   	return str0;
}
//---------------------------------------


