$(function () {
	$('a#button').hover(function() {
		$(this).fadeTo("fast", 1);
	}, function() {
		$(this).fadeTo("fast", .85);
	});
});// JavaScript Document
