// JavaScript Document
			
		function scrolls(){	
			
			if(initScroll == 0){
			
				// vertical slider control
				var slider3 = new Control.Slider('handle3', 'track3', {
					axis: 'vertical',
					onSlide: function(v) { scrollVertical(v, $('anime'), slider3);  },
					onChange: function(v) { scrollVertical(v, $('anime'), slider3); }
				});
						
				
				// disable vertical scrolling if text doesn't overflow the div
				if ($('anime').scrollHeight <= $('anime').offsetHeight) {
					slider3.setDisabled();
					$('wrap3').hide();
				}
				initScroll = 1;
			}
			
		}
			
			
			// scroll the element vertically based on its width and the slider maximum value
			function scrollVertical(value, element, slider) {
				element.scrollTop = Math.round(value/slider.maximum*(element.scrollHeight-element.offsetHeight));
			}
			
			
			
		/*	function getIt(){
				alert('SCROLL: ' + $('anime').scrollHeight + '   OFFSET: ' + $('anime').offsetHeight + '    CLIENT: ' + $('anime').clientHeight);
			}*/
