$(document).ready(function () {
	$("#get_buttons .button").hover(
	  function() {
		type = $(this).attr('id');
		$("#"+type+"_flyout").show();
	  },
	  function() {
		type = $(this).attr('id');
		$("#"+type+"_flyout").hide();
	  }
	);
});
