$(document).ready(function(){		
				$heading = $("#layoutTableContent .heading1Div").html();
				$("#layoutTableContent .heading1Div").remove();
				$content = $(".contentDiv").html();
				$(".contentDiv").remove();
				$content2 = "<table style='border-top:2px solid white;border-left:1px solid white;border-right:5px solid white;' cellpadding='0' cellspacing='0' width='550'><tr><td width='11' height='11' colspan='2' rowspan='2' valign=top><img border='0' src='/images/k_ol.gif' width='11' height='11'></td><td bgcolor='#C1C4D2' height='1'><img border='0' src='/images/trans.gif' height='1'></td><td width='11' height='11' colspan='2' rowspan='2' vAlign=top><img border='0' src='/images/k_or.gif' width='11' height='11'></td></tr><tr><td height='10'><img border='0' src='/images/trans.gif' height='10'></td></tr><tr><td bgcolor='#C1C4D2' width='1' ><img border='0' src='/images/trans.gif' width='1'></td> <td width='10' ><img border='0' src='/images/trans.gif' width='10' height='1'></td><td>" + $content + "</TD><td width='10' ><img border='0' src='/images/trans.gif' width='10' height='1'></td><td bgcolor='#C1C4D2' width='1' ><img border='0' src='/images/trans.gif' width='1'></td></tr><tr><td width='11' height='11' colspan='2' vAlign=bottom rowspan='2'><img border='0' src='/images/k_ul.gif' width='11' height='11'></td> <td height='10' valign='buttom'><img border='0' src='/images/trans.gif' height='10'></td><td width='11' height='11' colspan='2' valign=bottom rowspan='2'><img border='0' src='/images/k_ur.gif' width='11' height='11'></td> </tr><tr><td height='1' bgcolor='#C1C4D2'><img border='0' src='/images/trans.gif' height='1'></td></tr></table>"
				$("#layoutTableContent").append($content2);
				$("#layoutTableContent").prepend("<div class='heading1Div'>" + $heading + "</div>");
				
				if ($("#layoutTableRight div").length > 0)
				{
					$heading = $("#layoutTableRight .heading1Div").html();
					$("#layoutTableRight .heading1Div").remove();
					$content = $("#layoutTableRight").html();
					$("#layoutTableRight").empty();
					$("#layoutTableRight").append("<div class='heading1Div'>" + $heading + "</div><div id='rightColoumn_ContentDiv'>" + $content + "</div>");
					$("#layoutTableRight").css("width", "152");
				}
				else
				{
					$("#layoutTableContent").css("width", "750");
				}
				
				height = document.getElementById("layoutTableLeftTd").offsetHeight + 20;			
				$("#layoutTableRight").css("height", height);
				$("#layoutTableLeft").css("height", height );
				$("#layoutTableContent").css("height", height - 12);	
				$("#layoutTableBottom").css("width", document.getElementById("layoutTableRight").offsetWidth + document.getElementById("layoutTableLeft").offsetWidth + document.getElementById("layoutTableContent").offsetWidth);
			});
