$(document).ready(function() {
	$("div.titulo").each(function(){
		$(this).after("<div class='titulo'><table border='0' cellspacing='0' cellpadding='0'><tr><td class='tbl'></td>"+
		"<td class='texto-titulo'>"+
					  $(this).html()+
					  "</td><td class='tbr'></td><td class='border'> <div> </div></td></tr></table></div>");
		}).remove();
	$("a.thickbox img").after('<img style="margin-left: -20px;" src="js/magnifier.gif"/>');
	
	$("#menu").wrap("<table cellpadding='0' cellspacing='0' border='0' class='menu'><tbody><tr><td></td></tr></tbody></table>");
	$("table.menu tbody").append($("#menu li").children().wrap(
		"<tr><td></td></tr>")
		.parent().parent());
	$("#menu").parent().parent().remove();
	$(".menu td a").wrap("<table cellpadding='0' cellspacing='0' border='0'><tr><td class='menu-item'></td></tr></table>");

	$(".menu td.menu-item").hover(function() {
	$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
	$(".menu td.menu-item").click(function() {
		window.location = $(this).children("a").attr("href");
		});		
	$(".menu td.menu-item a").bind("click",function(event) {
		event.stopPropagation();		
		});
	$(".menu a.active").parent().addClass("active");
	$("div#principal img").hover(function() {
		$(this).addClass("hover");
		},function() {
			$(this).removeClass("hover");
			}
		);


});