var revert = new Array();
var inames = new Array('youtube', 'twitter', 'facebook', 'steam', 'forums', 'rules', 'opinions', 'popoutstream', 'refreshstream', 'downloadchatclient');

// Preload
if (document.images) {
  var flipped = new Array();
  for(i=0; i< inames.length; i++) {
    flipped[i] = new Image();
    flipped[i].src = "./images/"+inames[i]+"hover.png";
  }
}

function over(num) {
  if(document.images) {
    revert[num] = document.images[inames[num]].src;
    document.images[inames[num]].src = flipped[num].src;
  }
}
function out(num) {
  if(document.images) document.images[inames[num]].src = revert[num];
}
function refreshPlayer()
{
	document.getElementById('live-stream-video-player').innerHTML = document.getElementById('live-stream-video-player').innerHTML;
}

function openPopoutWindow()
{
        window.open('http://www.own3d.tv/livestream/2389','Casualbros.com &ndash Live Video Game Streaming','scrollbars=no,menubar=no,height=480,width=640,resizable=yes,toolbar=no,location=no,status=no');
}
