$(function () {
	$('a#testbutton').hover(function() {
		$(this).fadeTo("fast", 1);
	}, function() {
		$(this).fadeTo("fast", .85);
	});
});



