﻿var srcFrame;
var prevImg="";
var newHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v..." width="382" height="207" id="FLVPlayer"> <param name="movie" value="FLVPlayer_Progressive.swf" /> <param name="salign" value="lt" /> <param name="quality" value="high" /> <param name="scale" value="noscale" /> <param name="FlashVars"value="&skinName=clearSkin_3&streamName=honda2&autoPlay=true&autoRewind=false" /> <embed src="FLVPlayer_Progressive.swf"flashvars="&skinName=clearSkin_3&streamName=honda2&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="382" height="207" name="FLVPlayer"salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';

function transferHTML() {
 srcFrame = document.getElementById("source");
 srcContent='';
 if (srcFrame.contentDocument){
  srcContent=srcFrame.contentDocument.getElementsByTagName("BODY")[0].innerHTML;
 }
 else if (srcFrame.contentWindow){
  srcContent=srcFrame.contentWindow.document.body.innerHTML;
 }
 document.getElementById("textLeft").innerHTML = srcContent
}


function switchImage(switchID, imgDir) {
    var nextImg;
	if (prevImg == "") {
        	prevImg = document.getElementById("main").src.substring(document.getElementById("main").src.indexOf('_', 1) + 1, document.getElementById("main").src.indexOf('_', 1) + 2);
        }
    nextImg = document.getElementById("switchImg_" + switchID).src
    document.getElementById("switchImg_" + switchID).src = imgDir + prevImg + ".jpg";
    document.getElementById("mainPic").innerHTML = '<img id="main" src ="' + nextImg + '" alt = "" />'
    prevImg = "";
}

var index = 1;

function startTimer() {
    myArray = new Array("Default_1.jpg", "Default_2.jpg", "Default_3.jpg", "Default_4.jpg", "Default_5.jpg")
    if (index > 4) {
        index = 0;
    }
    document.getElementById("flip").src = "images/Default/" + myArray[index];
    index++;
}
function start() {
    ref = setInterval("startTimer()", 3000);
}


function playVideo2(switchID) {
             var videoImg;
             videoImg = document.getElementById("main").src
             if (String(videoImg).indexOf('Honda_3.jpg', 1) > 0) {
                 prevImg = document.getElementById("main").src.substring(document.getElementById("main").src.indexOf('_', 1) + 1, document.getElementById("main").src.indexOf('_', 1) + 2);
		document.getElementById("mainPic").innerHTML = '<a  href="http://www.genousdevelopment.com/honda2.flv" style="display:block;width:380px;height:207px" id="player"></a>'; 
		flowplayer("player", "flowplayer-3.1.0.swf");
             }
         }