function Values()
{
	this.initialize = function()
	{
		$('#values').serialScroll({
			items:'div.values_item',
			axis:'y',
			cycle: true,
			stop: true, 
			duration: 700,
			interval: 12000,
			force: true,
			constant: false
		});
		
		$('#values').hover(function(){
			$(this).trigger('stop');
		},function(){
			$(this).trigger('start');
		});
	}
}

var values = null;
$(function(){
	
	values = new Values();
	values.initialize();
	
});
