/**
 * @author mryan
 */
	
	var so = new SWFObject("/flash/videoplayer.swf", "videoplayerObject", "600", "448", "9.0.124", "#ffffff");						
	so.addParam("wmode", "transparent");
	so.useExpressInstall('/flash/expressinstall.swf');
	so.write("videoplayer");
	
	function videoItem(theTitle, thePath, theDescription)
	{		
		this.title = theTitle;
		this.path = thePath;
		this.description = theDescription;
		
	}
	
	//Pharmacists, Physicians, Patients, Nurses & Medical Assistants
	
	var videoArray = new Array();	
	
	videoArray[0] = new videoItem("Rob Breslin, RPh", "/flash/videos/pharmacists.flv");
	videoArray[1] = new videoItem("Tracey Blum, RPh", "/flash/videos/physicians.flv");
	videoArray[2] = new videoItem("Cathy Alvarez, RPh", "/flash/videos/patients.flv");
	videoArray[3] = new videoItem("David Feeney, RPh", "/flash/videos/nurses.flv");
	
	var videoArrayLength = videoArray.length;
	
	function TriggerVideo(theIndex)
	{
		document.getElementById("videoplayerObject").loadVideo(videoArray[theIndex].path);
		document.getElementById("videoplayerObject").playVideo();
		//document.forms[0].videoplayerObject.loadVideo(videoArray[theIndex].path);
		//document.forms[0].videoplayerObject.playVideo();
		
		ResetButtons();
		
		document.getElementById("cat" + (theIndex + 1)).src = "/images/vidcat" + (theIndex + 1) + "r.jpg";

			
	}
	
	function ResetButtons()
	{
		document.getElementById("cat1").src = "/images/vidcat1.jpg";
		document.getElementById("cat2").src = "/images/vidcat2.jpg";
		document.getElementById("cat3").src = "/images/vidcat3.jpg";
		document.getElementById("cat4").src = "/images/vidcat4.jpg";
	}
	
	var VideosHaveLoaded = false;
