window.addEvent('domready',function(){	
		
		//video
		var hs_vid = new noobSlide({
			mode: 'vertical',
			box: $('vid_box'),
			//startItem: 1,
			items: $ES('div','vid_box'),
			size: 183,
			//interval:4000,
			autoPlay: true,
			handles: $ES('li','bolum'),
			fxOptions: {
				duration: 750,
				transition: Fx.Transitions.Back.easeOut,
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
			this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
		hs_vid.walk(0);
		
		//fotoğraf galerisi
		var hs_foto = new noobSlide({
			mode: 'vertical',
			box: $('foto_box'),
			startItem: 1,
			items: $ES('div','foto_box'),
			size: 156,
			interval:4000,
			autoPlay: true,
			handles: $ES('li','foto_gal'),
			buttons: {previous: $('yukari_foto'), next: $('asagi_foto') },
			fxOptions: {
				duration: 750,
				transition: Fx.Transitions.Back.easeOut,
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
			 /*this.handles.removeClass('active');
				currentHandle.addClass('active'); */
			}
		});
		hs_foto.walk(0);

	});