$(function() {
	$(".button").hover(function() {$(this).css('color','#ffff99')},function() {$(this).css('color','')});
});

$(function() {
	$.fn.autoscroll = function(speed) {
		$('html,body').animate(
		{
		scrollLeft: this.offset().left,
		scrollTop: this.offset().top
		},
		speed
		);
		return this;
	};
});
