function DrawImage(ImgD,setWidth,setHeight){

   var image=new Image();
   if(ImgD.src!='')
		image.src=ImgD.src;
   else
		image.src="/images/nopic.jpg";
   if(image.width>0 && image.height>0){
    if(image.width/image.height>= setWidth/setHeight){
     if(image.width>setWidth){  
     ImgD.width=setWidth;
     ImgD.height=(image.height*setHeight)/image.width;
     image.height=ImgD.height;
     }else{
     ImgD.width=image.width;  
     ImgD.height=image.height;
     }
     }
    else{
     if(image.height>setHeight){  
     ImgD.height=setHeight;
     ImgD.width=(image.width*setHeight)/image.height;  
     image.width=ImgD.width;   
     }else{
     ImgD.width=image.width;  
     ImgD.height=image.height;
     }
     }
    }
    ImgD.src=image.src;
    ImgD.className="imgShow";
} 
var freeid=0;
function nextfree(){
	$("free" + freeid).style.display='none';
	freeid++;
	if(freeid >=freecount)freeid=0;
	$("free" + freeid).style.display='';
	setTimeout("nextfree();",4000);
}
var saleid=0;
function nextsale(){
	$("sale" + saleid).style.display='none';
	saleid++;
	if(saleid>=salecount)saleid=0;
	$("sale" + saleid).style.display='';
	setTimeout("nextsale();",5000);
}
function startslide()
{
	if($("free0"))setTimeout("nextfree();",5000); 
}		
function showactor(a_id)
{
	for(var i=1;i<10;i++)
		document.getElementById("mah" + i).className="menu_actor_hide";
	document.getElementById("mah" + a_id).className="menu_actor_show";
}