function slideLine(ul, delay, speed, lh) 
{
	var slideBox = (typeof ul == 'string')?document.getElementById(ul):ul;
	var delay = delay||1000, speed=speed||20, lh = lh||40;
	var tid = null, pause = false;
	var start = function() 
	{
		tid=setInterval(slide, speed);
	}
	var slide = function() 
	{
		if (pause) return;
		slideBox.scrollTop += 2;
		if (slideBox.scrollTop % lh == 0) 
		{
			clearInterval(tid);
			slideBox.appendChild(slideBox.getElementsByTagName('span')[0]);
			slideBox.scrollTop = 0;
			setTimeout(start, delay);
		}
	}
	slideBox.onmouseover=function()
	{
		pause=true;
	}
	slideBox.onmouseout=function()
	{
		pause=false;
	}
	setTimeout(start, delay);
}
function JCWebSearchTab( SearchStyle )
{
	if ( SearchStyle == '1' )
	{
		//供求信息
		document.getElementById('gongqiuxinxi_img').src = "images/sousuo_42.jpg";
		document.getElementById('shangwushipin_img').src = "images/sousuo1_44.jpg";
		document.getElementById('qiyeshangpu_img').src = "images/sousuo1_46.jpg";
		document.getElementById('wangpu_img').src = "images/wangpu1_46.jpg";
		
	}
	else if ( SearchStyle == '2' )
	{
		//企业视频
		document.getElementById('gongqiuxinxi_img').src = "images/sousuo1_42.jpg";
		document.getElementById('shangwushipin_img').src = "images/sousuo_44.jpg";
		document.getElementById('qiyeshangpu_img').src = "images/sousuo1_46.jpg";
		document.getElementById('wangpu_img').src = "images/wangpu1_46.jpg";
	}
	else if ( SearchStyle == '3')
	{
		//企业商铺
		document.getElementById('gongqiuxinxi_img').src = "images/sousuo1_42.jpg";
		document.getElementById('shangwushipin_img').src = "images/sousuo1_44.jpg";
		document.getElementById('qiyeshangpu_img').src = "images/sousuo_46.jpg";
		document.getElementById('wangpu_img').src = "images/wangpu1_46.jpg";
	}
	else if ( SearchStyle == '4')
	{
		//企业商铺
		document.getElementById('gongqiuxinxi_img').src = "images/sousuo1_42.jpg";
		document.getElementById('shangwushipin_img').src = "images/sousuo1_44.jpg";
		document.getElementById('qiyeshangpu_img').src = "images/sousuo1_46.jpg";
		document.getElementById('wangpu_img').src = "images/wangpu_46.jpg";
	}
}


function JCWebSearchPage()
{
	var mytest = document.getElementById('gongqiuxinxi_img').src;
	var myArray = mytest.split("/");
	mytest = "images/"+myArray[myArray.length-1];
	
	if ( mytest == "images/sousuo_42.jpg" )
	{
		//供求信息
		var sUrl_Value = "/do/supplyanddemand?dispatch=supplyanddemand&id=1&f_content="+document.getElementById('textfield3').value;
		//alert(sUrl_Value);
		window.open(sUrl_Value);
		return;
	}
	
	mytest = document.getElementById('shangwushipin_img').src;
	myArray = mytest.split("/");
	mytest = "images/"+myArray[myArray.length-1];
	if ( mytest == "images/sousuo_44.jpg" )
	{
		//企业视频
		var sUrl_Value = "http://www.jlswsp.com/Search.asp";
		window.open(sUrl_Value);
		return;
	}
	
	mytest = document.getElementById('qiyeshangpu_img').src;
	myArray = mytest.split("/");
	mytest = "images/"+myArray[myArray.length-1];
	
	if ( mytest == "images/sousuo_46.jpg" ) 
	{
		//企业商铺
		var sUrl_Value = "/do/WebDisplayQiYeShangPu?dispatch=WebDisplayQiYeShangPu&name="+document.getElementById('textfield3').value;
		window.open(sUrl_Value);
		return;
	}	
	
	mytest = document.getElementById('wangpu_img').src;
	myArray = mytest.split("/");
	mytest = "images/"+myArray[myArray.length-1];
	
	if ( mytest == "images/wangpu_46.jpg" ) 
	{
		//企业商铺
		var sUrl_Value = "/do/toWebViewstock?dispatch=toWebViewstock&name="+document.getElementById('textfield3').value;
		window.open(sUrl_Value);
		return;
	}	
}


