$(document).ready( function()
{
	$(".Groupbox").each(function()
	{
		var title = $(this).attr("r:title");
		var size = $(this).attr("r:width");
		var orig = $(this).html();
		var content = "<fieldset style='width: " + size + "px'><legend><span class='gmain'><span class='gleft'><span class='gright'>" + title + "</span></span></span></legend>" + orig + "</fieldset>";
		$(this).html( content );
	});

	$(".Alternate").each(function()
	{
		$(this).children("thead").children("tr:even").attr("class","Header");
		$(this).children("thead").children("tr:odd").attr("class","HeaderSub");
		$(this).children("tbody").children("tr:even").attr("class","RowOne");
		$(this).children("tbody").children("tr:odd").attr("class","RowTwo");
	});

	function makeDialog()
	{
		$("#dialog").dialog(
		{ 
			modal: true,
			background: "black",
			overlay: { 
		        opacity: 0.5, 
		        background: "black"
		    } 
		});
	}

});
