			// <![CDATA[
				function changeVideo(whichone,vidfile1,id1,vidfile2,id2,bgcolor){		
					var swfobjectBGcolor = bgcolor;
					var video1 = document.getElementById("vid1");
					var video2 = document.getElementById("vid2");
					var disableclick1 = video1.onclick = function () { return false };
					var disableclick2 = video2.onclick = function () { return false };
					if(whichone=="vid1"){
						var so = new SWFObject(vidfile1,id1,"500","375","8",swfobjectBGcolor);
						so.write("rightContent");
						video1.blur();
						video1.style.cursor = "default";
						video1.setAttribute((document.all ? 'className' : 'class'), "vidOn");
						disableclick1;
						video2.style.cursor = "pointer";
						video2.style.cursor = "hand";
						video2.setAttribute((document.all ? 'className' : 'class'), "vidOff");
						video2.onclick = function () { changeVideo("vid2",vidfile1,id1,vidfile2,id2,bgcolor);return(false);};
					}
					if(whichone=="vid2"){
						var so = new SWFObject(vidfile2,id2,"500","375","8",swfobjectBGcolor);
						so.write("rightContent");
						video1.style.cursor = "pointer";
						video1.style.cursor = "hand";
						video1.setAttribute((document.all ? 'className' : 'class'), "vidOff");
						video1.onclick = function () { changeVideo("vid1",vidfile1,id1,vidfile2,id2,bgcolor);return(false);};	
						video2.blur();
						video2.style.cursor = "default";
						video2.setAttribute((document.all ? 'className' : 'class'), "vidOn");
						disableclick2;
						}
				}
				
				function startHilite(whichone){
																		var hiliteThis = document.getElementById(whichone);
																		var buttonClass = document.getElementById(whichone).getAttribute(document.all ? 'className' : 'class');
																		if(buttonClass=="vidOn"){
																				return;
																			}
																		else{
																					hiliteThis.setAttribute((document.all ? 'className' : 'class'), "vidRoll");
																		}
				}
								function stopHilite(whichone){
																		var unhiliteThis = document.getElementById(whichone);
																		var buttonClass = document.getElementById(whichone).getAttribute(document.all ? 'className' : 'class');
																		if(buttonClass=="vidRoll"){
																				unhiliteThis.setAttribute((document.all ? 'className' : 'class'), "vidOff");
																			}
																		else{
																					return;
																		}
				}
				
			// ]]>