<!--
    var c_id = '';
    var hot_query_list=['0,博客:博客','0,广告:广告','0,情人:情人','0,创业:创业','0,订票:订票','0,策划:策划','0,足球:足球','0,手机:手机','0,毕业:毕业','0,整形:整形','0,交友:交友','0,宠物:宠物','0,交友 性爱:性爱','0,旅游 订房:旅游','0,瘦身:瘦身','0,房产:房产','0,二手:二手','0,育婴:育婴','0,铃声:铃声','0,美容:美容','0,留学:留学','0,java:Java','0,理财:理财','0,求职:求职','0,自考:自考','0,泳装:泳装','0,交友 美女:美女','0,夜曲 铃声:夜曲','0,摄影:摄影','0,交友 两性:两性','0,韩国:韩国','0,电脑:电脑','0,培训:培训','0,就业:就业','0,设计:设计','0,包装:包装','0,转让:转让','0,商务:商务','0,移民:移民','0,论文:论文','0,MBA:MBA','0,代理:代理'];
    var currentHotQueryOffset = -1;
    var refreshHotQueryTimer = null;
    
    function setHotQueryList(offset){
    	if(0==offset){
    		return;
    	}
      if(null!=refreshHotQueryTimer){
      	clearTimeout(refreshHotQueryTimer);
      	refreshHotQueryTimer = null;
      }
      var number_per_row = 4;
      var hot_query_content = '<table border=0 cellspacing=0 cellpadding=0><tr><td><table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td nowrap valign="middle">';
      currentHotQueryOffset+=offset;
      if(currentHotQueryOffset+8>hot_query_list.length){
        currentHotQueryOffset = hot_query_list.length-8;
      }
      if(currentHotQueryOffset<0){
        currentHotQueryOffset = 0; //hot_query_list.length - (hot_query_list.length+10-1) % 10;
      }
      var i;
      for(i=currentHotQueryOffset;i<currentHotQueryOffset+8;i++){
        if(i>=hot_query_list.length){
                break;
        }
        var hot_query = hot_query_list[i];
        var query_string = hot_query;
        var query_string_quoted = '';
        var corder = 0;
        var pos = hot_query.indexOf(':');
        if(-1!=pos){
          query_string = hot_query.substring(pos+1, hot_query.length);
          var pos2 = hot_query.indexOf(',');
          if(-1!=pos2 && pos2<pos){
            query_string_quoted = hot_query.substring(pos2+1, pos);
            corder = parseInt(hot_query.substring(0, pos2));
          }
          else{
            corder = parseInt(hot_query.substring(0, pos));
          }
        }
        if(''==query_string_quoted){
          query_string_quoted = query_string;
        }
        if(i>currentHotQueryOffset && (i-currentHotQueryOffset)%number_per_row==0){
          hot_query_content += "</td></tr></table></td></tr>\n<tr><td><table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td nowrap valign=middle>";
        }
        hot_query_content += "<a href=\"javascript:searchIt('"+query_string_quoted+"');\" title=\""+query_string;

        hot_query_content += "\" onmousemove=\"javascript:window.status='搜索热词 "+query_string+"';\" onmouseout=\"javascript:window.status='';\">"+query_string+"</a>";

        hot_query_content+=" ";
      }
      hot_query_nav = "";

      if(''!=hot_query_nav){
	      hot_query_content += '</td><td align=right nowrap>';
	      hot_query_content += hot_query_nav;
      }
      hot_query_content += '</td></tr></table></td></tr></table>';
//      if(null!=hot_query_td.filters){
//      	hot_query_td.filters[0].apply();
//      	hot_query_td.filters[0].motion = offset>0 ? 'forward' : 'reverse';
//      }
      hot_query_td.innerHTML = hot_query_content;
//      if(null!=hot_query_td.filters){
//      	hot_query_td.filters[0].play();
//      }
    }
    
    function refreshHotQuery(){
    	refreshHotQueryTimer = null;
    	if(currentHotQueryOffset+8>=hot_query_list.length){
    		setHotQueryList(-currentHotQueryOffset);
	    }
	    else{
    		setHotQueryList(8);
    	}
    	refreshHotQueryTimer = setTimeout('refreshHotQuery();', 3000);
    }
    
    if(hot_query_list.length>0){
      document.writeln('<table><tr><td valign=top></td><td id=HotSearchList style="filter: progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=0.25,wipestyle=0,motion=forward);" onMouseOver="if(null!=refreshHotQueryTimer){clearTimeout(refreshHotQueryTimer);refreshHotQueryTimer=null;}" onMouseOut="if(null==refreshHotQueryTimer){refreshHotQueryTimer = setTimeout(\'refreshHotQuery();\', 3000);}" nowrap></td></tr></table> ');
      //GradientWipe(GradientSize=0.25,wipestyle=0,motion=forward); 
      //Pixelate(MaxSquare=50);
      var hot_query_td = document.all ? document.all['HotSearchList'] : document.getElementById('HotSearchList');
      setHotQueryList(1);
      refreshHotQueryTimer = setTimeout('refreshHotQuery();', 3000);
    }
    //-->