// Image Mouseover

function init() {
  if (!document.getElementById) return
  var imgOriginSrc;
  var imgTemp = new Array();
  var imgarr = document.getElementsByTagName('img');
  for (var i = 0; i < imgarr.length; i++) {
    if (imgarr[i].getAttribute('hsrc')) {
        imgTemp[i] = new Image();
        imgTemp[i].src = imgarr[i].getAttribute('hsrc');
        imgarr[i].onmouseover = function() {
            imgOriginSrc = this.getAttribute('src');
            this.setAttribute('src',this.getAttribute('hsrc'))
        }
        imgarr[i].onmouseout = function() {
            this.setAttribute('src',imgOriginSrc)
        }
    }
  }
}

onload=init;


function Openme1(newin) {

onclick=window.open(newin,"hoch","resizable=no,scrollbars=no,width=515,height=680,top=0,left=0")

}

function Openme2(newin) {

onclick=window.open(newin,"breit","resizable=no,scrollbars=no,width=900,height=680,top=0,left=0")
}

function changeContent(dest1,frame1,dest2,frame2) { 
    newContent1 = eval("parent."+frame1); 
    newContent2 = eval("parent."+frame2); 
    newContent1.location.href = dest1; 
    newContent2.location.href = dest2; 
} 
function goBack(frame1,frame2) { 
  newContent1=eval("parent."+frame1); 
  newContent2=eval("parent."+frame2); 
  newContent1.history.back(); 
  if (!window.opera) window.setTimeout("newContent2.history.back()",10); 
} 
function goForward(frame1,frame2) { 
  newContent1=eval("parent."+frame1); 
  newContent2=eval("parent."+frame2); 
  newContent1.history.forward(); 
  if (!window.opera) window.setTimeout("newContent2.history.forward()",10); 
} 

