$(document).ready(function() {
	var myContent = "fff";
	var newCont = "fff";
	var wid = 10;

	$("h1").each(function(i) {
		myContent = $(this).html();
 	      //alert(myContent);
		newCont = "<img src='title.php?t=" + myContent + "'>";
 		$(this).html(newCont);
      });

	$(".fancyborder").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table height='100%' width='100%' border='0' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycell'>" + myContent + "</td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).addClass("fancyborder_post");
		$(this).removeClass("fancyborder");
      });

	$(".vigtopright").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table height='100%' width='100%' border='0' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellvtr'><div class='vtr'>" + myContent + "</div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("vigtopright");
      });

	$(".vigtopleft").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table height='100%' border='0' width='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellvtl'><div class='vtl'>" + myContent + "</div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("vigtopleft");
      });

	$(".shadeleft").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table height='100%' border='0' width='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellshl'><div class='shl'>" + myContent + "</div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("shadeleft");
      });

	$(".shaderight").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table height='100%' border='0' width='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellshr'><div class='shr'>" + myContent + "</div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("shaderight");
      });

	$(".vigfloor").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table border='0' height='100%' width='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellflr'><div class='flr1'><div class='flr2'>" + myContent + "</div></div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("vigfloor");
      });

	$(".vigbottomright").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table border='0' width='100%' height='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellvbr'><div class='vbr1'><div class='vbr2'>" + myContent + "</div></div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("vigbottomright");
      });

	$(".vigbottomleft").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table border='0' width='100%' height='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellvbl'><div class='vbl1'><div class='vbl2'>" + myContent + "</div></div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("vigbottomleft");
      });

	$(".mymap").each(function(i) {
		myContent = $(this).html();			
		newCont = "<table border='0' width='100%' height='100%' cellpadding='0' cellspacing='0'><tr><td class='btop' colspan='3'></tr><tr><td class='bleft'><img src='images/0.gif'></td><td class='fancycellmap'><div class='mymap1'><div class='mymap2'><div class='mymap3'>" + myContent + "</div></div></div></td><td class='bright'><img src='images/0.gif'></td></tr><tr><td class='bbottom' colspan='3'></tr></table>";
		$(this).html(newCont);
		$(this).removeClass("mymap");
      });


      //alert($("#content").html());
 });

