	var sURL = document.location.href;
	if(document.getElementById("current-catalog")!=null) 
	{ 		
		var str=document.getElementById("current-catalog").innerHTML;
		var browser=navigator.appName;
		if(browser=="Netscape") 
		{
			if(str.indexOf('class="catalog"')>0 && sURL.indexOf("&query=")<0)
			{
				//document.write("<style>html>/**/body #internalWrapper #wrapper .products-table{width:770px;margin-left:-127px;margin-top:22px;}</style>");
			} 
			else if(str.indexOf('class="catalog"')>0 && sURL.indexOf("&query=")>0)
			{				
				//document.write("<style>#products-pager-top {margin-top:-18px;}</style>");
				//document.write("<style>html>/**/body #products-pager-top {margin-top:0px;}</style>");
				//document.write("<style>html>/**/body #internalWrapper #wrapper .products-table{width:770px;margin-left:-127px;margin-top:22px;}</style>");
			}

			while(str.indexOf('class="catalog"')>0)
			{ 
				str=str.replace('class="catalog"','class="section"'); 
			} 
			document.getElementById("current-catalog").innerHTML=str; 
		} 
		else
		{ 
			while(str.indexOf('class=catalog')>0)
			{
				str=str.replace('class=catalog','class=section');
			}
			document.getElementById("current-catalog").innerHTML=str;
		}
	}
	


