window.addEvent('domready', function(){
	var myMenu = new ImageMenuHeight($$('#image-menu-h .image-h'),{openHeight:240});
	
	
	var scroll2 = new Scroller('mousemove', {area: 450, velocity: .009, wait: false});
	$('mousemove').addEvent('mousedown', function() {
		scroll2.start();
	});
	$('mousemove').addEvent('mouseup', function() {
		scroll2.stop();
	});
	scroll2.start();
	
	new SimpleSlide("SimpleSlide",{type: "scrollfade", direction: "forward", auto: "loop", duration: 400, time: 4000, velocity: .1});
	
});