	 if (isFlashMX)  {	  document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"115\" height=\"185\">");      document.write("<param name=\"movie\" value=\"/flash/posters_slide1.swf\">");      document.write("<param name=\"quality\" value=\"high\">");      document.write("<embed src=\"/flash/posters_slide1.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"115\" height=\"185\"></embed>");      document.write("</object>");	  document.write("<br/>");	  document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"115\" height=\"185\">");      document.write("<param name=\"movie\" value=\"/flash/posters_slide2.swf\">");      document.write("<param name=\"quality\" value=\"high\">");      document.write("<embed src=\"/flash/posters_slide2.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"115\" height=\"185\"></embed>");      document.write("</object>");	 } else {				/***********************************************		* Flexi Slideshow- © Dynamic Drive (www.dynamicdrive.com)		* This notice must stay intact for use		* Visit http://www.dynamicdrive.com/ for full source code		***********************************************/				var variableslide=new Array()				//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]				variableslide[0]=['/images/posters/poster1.jpg', '1']		variableslide[1]=['/images/posters/poster2.jpg', '2']		variableslide[2]=['/images/posters/poster3.jpg', '3']		variableslide[3]=['/images/posters/poster4.jpg', '4']		variableslide[4]=['/images/posters/poster5.jpg', '5']		variableslide[5]=['/images/posters/poster6.jpg', '6']		variableslide[6]=['/images/posters/poster7.jpg', '7']		variableslide[7]=['/images/posters/poster8.jpg', '8']		variableslide[8]=['/images/posters/poster9.jpg', '9']		variableslide[9]=['/images/posters/poster10.jpg', '10']				//configure the below 3 variables to set the dimension/background color of the slideshow				var slidewidth='110px' //set to width of LARGEST image in your slideshow		var slideheight='185px' //set to height of LARGEST iamge in your slideshow, plus any text description		var slidebgcolor='#FFFFFF'				//configure the below variable to determine the delay between image rotations (in miliseconds)		var slidedelay=1500				////Do not edit pass this line////////////////				var ie=document.all		var dom=document.getElementById				//caches images		for (i=0;i<variableslide.length;i++){			var cacheimage=new Image()			cacheimage.src=variableslide[i][0]		}				//set current slide to 0		var currentslide=0		var iteration=0		//rotate images 		function rotateimages(){			iteration++;			contentcontainer='<img src="'+variableslide[currentslide][0]+'" alt="'+variableslide[currentslide][1]+'" border="0" vspace="3">'			currentslide++;			contentcontainer2='<img src="'+variableslide[currentslide][0]+'" alt="'+variableslide[currentslide][1]+'" border="0" vspace="3">'						if (document.layers){					if (iteration%2==0) {					crossrotateobj.document.write(contentcontainer)					crossrotateobj.document.close()				} else {					crossrotateobj2.document.write(contentcontainer2)					crossrotateobj2.document.close()				}			}			else if (ie||dom) {				if (iteration%2==0) {					crossrotateobj.innerHTML=contentcontainer				} else {					crossrotateobj2.innerHTML=contentcontainer2				}			}			if (currentslide==variableslide.length-1) currentslide=0			else currentslide++				setTimeout("rotateimages()",slidedelay)		} //end rotate function				if (ie||dom) {			document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')			document.write('<div id="slidedom2" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')		}					function start_slider(){			crossrotateobj=dom? document.getElementById("slidedom") : ie? document.all.slidedom : document.slidensmain.document.slidenssub;			crossrotateobj2=dom? document.getElementById("slidedom2") : ie? document.all.slidedom2 : document.slidensmain2.document.slidenssub2;					if (document.layers) {				document.slidensmain.visibility="show";				document.slidensmain2.visibility="show";			}					rotateimages();		} //end start_slider function				if (ie||dom)			start_slider();		else if (document.layers)			window.onload=start_slider;					 	 }