// JavaScript Document

//	function videoNav(vidNum,vidPart){
//		
//		var newVideo = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\"370\" height=\"298\" title=\"VideoPlayer\"><param name=\"movie\" value=\"player.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"flashvars\" value=\"file=/images/movies/"+ vidNum + ".flv&autostart=true\" /><embed src=\"player.swf\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" flashvars=\"file=/images/movies/" + vidNum + ".flv&autostart=true\" width=\"370\" height=\"298\"></embed></object>;"
//		
//		document.getElementById("vidPart-1").className = "";
//		document.getElementById("vidPart-2").className = "";
//		document.getElementById("vidPart-3").className = "";
//		document.getElementById("vidPart-4").className = "";
//		document.getElementById("vidPart-5").className = "";		
//		document.getElementById("vidPart-6").className = "";
///*		document.getElementById("vidPart-7").className = "";
//		document.getElementById("vidPart-8").className = "";
//		document.getElementById("vidPart-9").className = "";*/
//		document.getElementById(vidPart).className = "clicked";
//		document.getElementById("flashvideo").innerHTML = newVideo;
//}

function videoNav(vidNum, vidUrl) {

    var urlEnd = vidUrl.lastIndexOf(".");
    var strippedUrl = vidUrl.substring(0, urlEnd);
    var newVideo = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\"370\" height=\"298\" title=\"VideoPlayer\"><param name=\"movie\" value=\"player.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"flashvars\" value=\"file=" + strippedUrl + ".flv&autostart=true\" /><embed src=\"player.swf\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" flashvars=\"file=" + strippedUrl + ".flv&autostart=true\" width=\"370\" height=\"298\"></embed></object>;"

    var container = document.getElementById("clipLinksContainer");
    var clips = container.getElementsByTagName('a');
    for (var i = 0; i < clips.length; i++) {
        if (clips[i].id != vidNum.id) {
            clips[i].className = "";
        }
        else {
            clips[i].className = "clicked";
        }
    }

    document.getElementById("flashvideo").innerHTML = newVideo;
}
	
	var x = 0;
	var timer;
	function startRotate(withWhat) {
		var img = document.getElementById("homeflash");
		img.className = "homeflash" + withWhat;
		timer = setInterval('rotate()',3000);
	}
	
	function rotate() {
		var img = document.getElementById("homeflash");
		var theClass = img.className;
		x = theClass.charAt(9);
		if(x<5){
			x++;
		} else {
			x = 0;
		}
		img.className = "homeflash" + x;
	}
	function jumpRotate(toWhat) {
		clearInterval(timer);
		var img = document.getElementById("homeflash");
		img.className = "homeflash" + toWhat;
		timer = setInterval('rotate()',5000);
	}
