// JavaScript Document
var x = 0;
		var line_height = 22;
		
		var scroll = new Fx.Scroll('ultimissime-con', {
			wait: false,
			duration: 1000,
			offset: {'x': 0, 'y': 0}
		});
		
		$('ultimissime-nav-up').addEvent('click', function(event) {
			event = new Event(event).stop();
			(x < line_height ) ? x = line_height * 9 : x -= line_height;
			scroll.scrollTo(0,x);
		});
		
		$('ultimissime-nav-down').addEvent('click', function(event) {
			event = new Event(event).stop();
			(x >= line_height * 9) ? x = 0 : x += line_height;
			scroll.scrollTo(0,x);
		});
		
		window.addEvent('resize', function(event){
			scroll.scrollTo(0,x);
		});
