//------------ redirect
if(top.location.href==self.location.href){
  document.location.href = "http://www.volleyfants.at";
}
//------------ variables
var counter;
var anzahl;
var v_name; 
//------------ events
//document.onmousedown=rechtsklick;
//
function rechtsklick() {
 if (event.button==2) {
   alert('Ha, Ha, Ha!!!')
     }
}
function f_back(){
  if(counter==1){
    counter=anzahl+1;
    }
  counter=counter-1;
  document.images[0].src="images/"+v_name+counter+".jpg";
  //document.forms[0].tx.value=arrT[counter];
}
function f_forward(){
  if(counter==anzahl){
    counter=0;
    }
  counter=counter+1;
  document.images[0].src="images/"+v_name+counter+".jpg";
  //document.forms[0].tx.value=arrT[counter];
}
function ini(anz, v_n){
  counter=1;
  anzahl=anz;
  v_name = v_n	
  //document.images[v_image].src="images/" + v_name + ".jpg";	
  //document.forms[0].tx.value=arrT[counter];
}
function op(){
	newWin = open("op.htm?"+v_name+counter+"g.jpg","", "width=800, height=500 , screenX=0, screenY=0, scrollbars=yes, menubar=no, toolbar=no, resizable=yes, locationbar=yes, hotkeys=no");
}
function hoverMenu(obj) {
    if (document.all){ 
  	    obj.style.cursor = "hand";
    } else {
        obj.cursor = "hand";
    }
} 