<!--
							    var first = 0 ; 
								var temp="";
								var timeOutId = 0;
								function PlayHotImg(m,auto){
								    if(m!=99){first=m;}
									
									var show  =document.getElementById("show_img");
									var hot_font  =document.getElementById("hot_font");
									var show_img=show.getElementsByTagName("img");
									var show_li=hot_font.getElementsByTagName("li");
									
									for(var i=0;i<show_img.length;i++){
									  var display = "" ;
									  var classname="";
									  if(first==i){display='';classname="here";}
									  else {display='none';;classname=""} 
									    show_img[i].style.display=display ;
									    show_li[i].className=classname;
									 }
																	

									 first = first + 1 ; 
									 if(first>3) first=0;
									// alert(timeOutId);
									 if(!auto){
									   eval("clearTimeout("+timeOutId+")");									   
									 }
									 else 
									 { 
									 ĦĦĦĦeval("timeOutId=setTimeout('PlayHotImg("+first+",true)',2000)");
									 }
										 
								}
								
								timeOutId=setTimeout('PlayHotImg(0,true)',2000);
								//alert(timeOutId);
							//-->
