function cleanTab(tab){
	$("table tr:odd",tab).css("backgroundColor","#EFEFEF");
	// Limpio BR
	$("br",tab).replaceWith("");
	// Limpio TH
	$("table tr th",tab).each(function(){
		$(this).replaceWith("<td>"+$(this).html()+"</td>");
	});
	// Limpio Tabla
	$("table tr",tab).each(function(){
		// Remuevo TD vacio
		$("td",this).each(function(){
			if($(this).html()=="&nbsp;"||$(this).html()==""){
				$(this).remove();
			}
			if($("strong",this).length>0){
				$(this).html($("strong",this).html());
				$("strong",this).remove();
			}
			$(this).attr("width","");
			$(this).attr("height","");
			$(this).attr("colspan","");
		});
		// Remuevo TR vacio
		if($("td",this).length==0){ $(this).remove();}
		if($("td",this).length<2){
			$("td",this).attr("colspan","2");
			$("td",this).css("backgroundColor","#FFFFFF");
			$("td",this).html("<strong>"+$(this).html()+"</strong>");
		}
		else
		{	
			if($("td:last",this).html()!="" && $("td:first",this).html()=="&nbsp;")
			{
				$("td:first",this).html($("td:last",this).html());
				$("td:last",this).remove();
				$("td:first",this).attr("colspan","2");
				$("td:first",this).css("backgroundColor","#FFFFFF");
				$("td:first",this).html("<strong>"+$("td:first",this).html()+"</strong>");
			}
		}
	});
}
$(document).ready(function(){
	cleanTab("div#specs");
	cleanTab("div#accesories");
});

