$(function(){
	$("ul.quickbuttons li").hover(
		function(){
			$("p#quickbutton_desc").html($(this).children("a").html()).show();
		},
		function(){
			$("p#quickbutton_desc").hide();
		}
	);
});