$(function() {
	$("button").click(function() {
		$("span#move").css({"float" : "right",
						   	"text-decoration" : "overline" });
		$("span#move").hide("slow");
		$("span#move").show("slow");
		$("span#move").css({"float" : "right",
						   	"text-decoration" : "overline" });
	});
});
