$$('div.thisTourenBalken').each(function(touren){
    touren.addEvents({
    
      'mouseenter': function(e) {
      	console.log("Aktuell enter");
        $$('div.thisNotTourenBalken').each(function(balken){
        	balken.addEvents({
        		'mouseenter': function(e) {
        			console.log("Balken enter");
        		},
        		'mouseleave': function(e) {
        			console.log("Balken leave");
        		}        		
        	});
        });
      },
      
      'mouseleave': function(e) {
	    console.log("Aktuell leave");
        //$$('div.thisNotTourenBalken').
      } 
    });
});


function ATDetail(url) 
{ 
 var breite=300; 
 var hoehe=350; 
 var positionX=((screen.availWidth / 2) - breite / 2); 
 var positionY=((screen.availHeight / 2) - hoehe / 2); 
 pop=window.open('','','toolbar=0,location=0,directories=0,status=0,statusbar=false,menubar=0,scrollbars=1,resizable=0,fullscreen=0,width='+breite+',height='+hoehe+',top=0,left=0'); 
 pop.resizeTo(breite,hoehe); 
 pop.moveTo(positionX,positionY); 
 pop.location=url; 
}		
 
function BookDetail(url) 
{ 
 var breite=410; 
 var hoehe=200; 
 var positionX=((screen.availWidth / 2) - breite / 2); 
 var positionY=((screen.availHeight / 2) - hoehe / 2); 
 pop=window.open('','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,fullscreen=0,width='+breite+',height='+hoehe+',top=0,left=0'); 
 pop.resizeTo(breite,hoehe); 
 pop.moveTo(positionX,positionY); 
 pop.location=url; 
}		

