// JavaScript Document

function rotateflash()
{
	var flashPath = new Array() ;
		flashPath[0] = 'left.swf';
		flashPath[1] = 'left-1.swf';
	


	var len = flashPath.length;
	rand = Math.floor(Math.random()*len);		
	document.getElementById('Flash').innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="200" height="400"><param name="movie" value="'+flashPath[rand]+'"><param name="quality" value="High"><param name="wmode" value="transparent"><embed src="'+flashPath[rand]+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="200" height="400" quality="High" wmode="transparent"></object>';	
	
	
	
	
}
