// Hover Menu Fix for IE

startList = function() {
  if (document.all&&document.getElementById) {
    for (i=0; i<$("nav-main").descendants("li").length; i++) {
      node = $("nav-main").descendants("li")[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
          this.addClassName("over");
        }
        node.onmouseout=function() {
          this.removeClassName("over");
        }
      }
    }
  }
}
window.onload=startList;

function videoWindow(id) {
  window.open(self.location + "/properties/view_video/" + id ,'mywin','left=20,top=20,width=550,height=500,toolbar=1,resizable=0');
}