function mouseOver(img,img_src)
{
  document.getElementById(img).src = "/image/site/"+img_src;
}

function mouseOut(img,img_src)
{
   document.getElementById(img).src = "/image/site/"+img_src;
}

function resize_swf(elem_id, width, height) {
	var elem = document.getElementById(elem_id);
	if(elem){
		//elem.style.width = width + "px";
		elem.style.height = height + "px";
	}
} 
