$(document).ready(function(){

// .bp_text 
//$(".hot_tour table").each(function() {$(this).css({'width': '100px'}); });
$(".hot_tour tr").each(function() { 
  var tempStr=$(this).html();
  tempStr.replace('/</td><td class="bp_text/g', '</td></tr><tr><td class="bp_text');
  var temp = new Array();//temp.push
  $(this).find('.bp_text').each(function() {temp.push($(this).html());});  
  if (temp.length>0) tempStr="<td class='bp_text'><br>"+temp.join("<br>")+'<br><br></td>';
  $(this).empty().html(tempStr);
 
}
);

$(".hot_tour").css({'width': '150px', 'margin-left': '40px'}).show();
$(".hot_tour_header").css({'width': '150px', 'margin-left': '25px'}).show();

});
