window.addEvent('domready', function() {	//--studio	var studio = new Fx.Slide('studio', {		mode: 'horizontal',		transition: Fx.Transitions.Pow.easeOut,		duration: 1000		});	$('studio').addEvent('mouseenter', function(e){		e.stop();		studio.stop();		studio.slideOut();	});	$('studio').addEvent('mouseleave', function(e){		e.stop();		studio.stop();		studio.slideIn();	});	//--marken	var marken = new Fx.Slide('marken', {		mode: 'horizontal',		transition: Fx.Transitions.Pow.easeOut,		duration: 1000		});	$('marken').addEvent('mouseenter', function(e){		e.stop();		marken.stop();		marken.slideOut();	});	$('marken').addEvent('mouseleave', function(e){		e.stop();		marken.stop();		marken.slideIn();	});/*	if ($('box')) {		var hs2 = new noobSlide({			box: $('box'),			items: $$('#box img'),			interval: 5000,			size: 224,			fxOptions: {				duration: 4000,				transition: Fx.Transitions.Sine.easeOut,				wait: false			},			autoPlay: true		});	}	*/	if ($('box1')) {		var hs3 = new noobSlide({			box: $('box1'),			items: $$('#box1 img'),			interval: 5000,			mode: 'vertical',			size: 89,			fxOptions: {				duration: 4000,				transition: Fx.Transitions.Pow.easeOut,				wait: false			},			autoPlay: true		});	}});
