// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
//<!-- Begin
var pos = 2;
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];
 }
}
var col=new initArray("4b","5b","8b","8b");
function stop() {
document.bgColor = '#FFFFFF';
clearTimeout(loopID);
}
function start() {
col[1]="red"
col[2]="white"
pos++;
if (pos<0||pos>2) {
pos = 0;
}
document.getElementById('left_submenu_video').style.backgroundColor=col[pos];
loopID = setTimeout("start()",500);
}
// End -->