  var m_live=new Array()
  var str_value;
m_live[0] ="<img src=image/11.jpg width=200 height=150 border=0>"
m_live[1] ="<img src=image/12.jpg width=200 height=150 border=0>"
m_live[2] ="<img src=image/13.jpg width=200 height=150 border=0>"
m_live[3] ="<img src=image/14.jpg width=200 height=150 border=0>"
	var m_live_width=200								
	var m_live_height=150								
	var m_live_bgcolor='0'								
	var m_live_background='0'						
	var m_live_cnt = 0									
	var m_live_speed='1'								
	var m_live_wait='1000'							
	var m_live_timerID=''								
	var m_live_idx=0										

	document.writeln("<style>")
	document.writeln(" #m_live_layer1 { position:absolute; width:'+m_live_width+'; height:'+m_live_height+'; top:0; left:0;}")
	document.writeln(" #m_live_layer2 { position:absolute; width:'+m_live_width+'; height:'+m_live_height+'; top:0; left:0;}")
	document.writeln("</style>")

	document.writeln('<span style="position:relative;width:'+m_live_width+';height:'+m_live_height+';top:0;left:0;background-color:'+m_live_bgcolor+'">')
	document.writeln('<div onMouseOver="m_live_mouseover()" onMouseOut="m_live_mouseout()" style="position:absolute;width:'+m_live_width+';height:'+m_live_height+';top:0;left:0;clip:rect(0 '+m_live_width+' '+m_live_height+' 0);overflow:hidden;">')

	document.writeln("<div id='m_live_layer1'>")
	document.write(m_live[0])
	document.writeln("</div>")

	document.writeln("<div id='m_live_layer2'>")
	if(m_live.length == 1)
		m_live[1] = m_live[0]
	m_live_cnt = m_live.length
	document.write(m_live[1])
	document.writeln("</div>")

	document.writeln("</div>")
	document.writeln("</span>")

	function m_live_mouseover(){													
		if(m_live_timerID)			clearTimeout(m_live_timerID)
	}

	function m_live_mouseout(){														
		m_live_timerID = setTimeout("m_live_scroll()",m_live_speed)
	}

	function m_live_scroll(){
		document.all["m_live_layer1"].style.pixelTop = document.all["m_live_layer1"].style.pixelTop - 1
		document.all["m_live_layer2"].style.pixelTop = document.all["m_live_layer2"].style.pixelTop - 1

		if(document.all["m_live_layer2"].style.pixelTop == 0){
			document.all["m_live_layer1"].innerHTML = m_live[m_live_idx]
			document.all["m_live_layer1"].style.pixelTop = 0
			m_live_idx=(m_live_idx+1)%m_live_cnt										
			document.all["m_live_layer2"].innerHTML = m_live[m_live_idx]
			document.all["m_live_layer2"].style.pixelTop = m_live_height+1
			m_live_timerID = setTimeout("m_live_scroll()",m_live_wait)
		}else{
			m_live_timerID = setTimeout("m_live_scroll()",m_live_speed)
		}
	}

	function m_live_StartScroll(){											
			document.all["m_live_layer1"].innerHTML = m_live[0]
			document.all["m_live_layer2"].innerHTML = m_live[1]
		document.all["m_live_layer2"].style.pixelTop = m_live_height+1
		m_live_idx=1

		m_live_timerID = setTimeout("m_live_scroll()",m_live_speed)
	}
  m_live_StartScroll()
