if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js.");
	} else {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', '721',
			'height', '723',
			'src', 'showcase',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'showcase',
			'bgcolor', '',
			'name', 'showcase',
			'menu', 'true',
			'allowFullScreen', 'true',
			'allowScriptAccess','sameDomain',
			'movie', 'showcase',
			'salign', '',
			'flashvars', 'imageURL=images/first_image.jpg&videoWidth=500&videoHeight=370'
			); //end AC code
	}
	//play reel button funtion
		function thisMovie(movieName) {

         	if (navigator.appName.indexOf("Microsoft") != -1) {

             		return window[movieName];
         	} 

		else {

             		return document[movieName];

         	}
         }

         function play() {

         	thisMovie("showcase").playVideo();
		 }