var Video = new Object();
Video.imgho = "";

Video.imageSwitch = function(id)
{
  var obj = document.getElementById(id);
  var source = obj.src;
  var pieces = source.split("_");
  var act = pieces[pieces.length - 1].split(".jpg");
  
  act = parseInt(act);
  
  if(act == 6)
    act = 1;
  else
    act++;

  obj.src = pieces[0]+"_"+pieces[1]+"_"+act+".jpg";
  
  Video.imgho = window.setTimeout('Video.imageSwitch("' + id + '");', 600);
}

Video.turnOffSwitching = function(obj, start)
{
  clearTimeout(Video.imgho);
  var source = obj.src;
  var pieces = source.split("_");
  
  obj.src = pieces[0]+"_"+pieces[1]+"_"+start+".jpg";
}

function likebox()
{
	document.write('<iframe frameborder="0" src="http://www.facebook.com/plugins/like.php?href='+document.location+'&amp;layout=standard&amp;show_faces=false&amp;width=330&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=30" style="border:none; overflow:hidden; width:330px; height:30px;" allowTransparency="true"></iframe>');
}
