var url=document.URL;
var domain=document.domain;
$(document).ready(function(){
  $("#main_body").hide();
  $("#main_body").fadeIn(600);
  $('html').addClass('js');
	var url_query = url.replace('http://'+domain+'/', ''); 
  if (url_query!='') url_query = url_query.replace('.html','')
    if (url_query !='' && $("#"+url_query+"").length) $("#"+url_query+"").addClass("sel_"+url_query+"");    
    $("i[title]").each(function(){
		  $(this).replaceWith("<a href='" + $(this).attr("title") + "'>" +$(this).text() + "</a>");
		});    
});   
