try {
	$(document).ready(function(){
		$("#toggle_benchmark_data").click(function(){
				$("#benchmark_tabular_data").dialog({
					bgiframe  : true,
					width     : $("#benchmark_tabular_data").outerWidth() +75,
					heigth    : $("#benchmark_tabular_data").outerHeight()+35,
					title     : $("h2:first").text(),
					autoOpen  : true,
					resizable : true,
					draggable : true,
					close     : function(){
						$(this).dialog('destroy');
					}
				});
				return false;
		});
	});
}
catch(e){}

