window.addEvent('domready',function(){
	var V5 = new viewer($('box42').getChildren(),{
		mode: 'alpha',
		interval: 2000,
		onWalk: function(current_index){
			handles.removeClass('active');
			handles[current_index].addClass('active');
		}
	});
	var handles42 = $$('#handles42 span');
	handles42.each(function(el,i){el.addEvent('click',V5.walk.bind(V5,[i,true]));});
	
	
	var V6 = new viewer($('box43').getChildren(),{
		mode: 'alpha',
		interval: 2000,
		onWalk: function(current_index){
			handles.removeClass('active');
			handles[current_index].addClass('active');
		}
	});
	var handles43 = $$('#handles43 span');
	handles43.each(function(el,i){el.addEvent('click',V6.walk.bind(V6,[i,true]));});	
	
	
});

function openPic(imageName,imageWidth,imageHeight) {
        newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=0,top=0");
        newWindow.document.open();
        newWindow.document.write('<html><title>Kulturb&uuml;ro Bremen Nord</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
        newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"schliessen\" onClick=\"javascript:self.close()\">');
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
}
