
var speed = 200  //Delay Between Every word
var pause = 500 //Delay Between EveryLine
var timerID = null
var bannerRunning = false
var ar = new Array()
ar[0] = "Welcome to http://www.yuan-feng.com ！！！"
ar[1] = "拥有源丰 永远成功！  "
ar[2] = "“源丰”、“天使”系列产品"
ar[3] = "款式新颖"
ar[4] = "质量稳定"
ar[5] = "选料考究"
ar[6] = "做工精细"
ar[7] = "欢迎广大消费者和经销商"
ar[8] = "来信、来电洽谈"
ar[9] = "谢谢广大消费者的支持和关爱"
ar[10] = "忠心祝愿您在生活、人生的道路"
ar[11] = "拥有一把坚实的伞"
ar[12] = "让您风雨无阻"
ar[13] = "度过岁月的风风雨雨"                                                                                                                                                                                                                                                                                  
var currentMessage = 0
var offset = 0
function stopBanner() {
   if (bannerRunning)
     clearTimeout(timerID)
     bannerRunning = false}
function startBanner() {
	stopBanner()
	showBanner()}
function showBanner() {
var text = ar[currentMessage]
   if (offset < text.length) {
	if (text.charAt(offset) == " ")
			offset++
		var partialMessage = text.substring(0, offset + 1)
 		window.status = partialMessage
		offset++
		timerID = setTimeout("showBanner()", speed)
		bannerRunning = true}
	else {
		offset = 0
		currentMessage++
		if (currentMessage == ar.length)
			currentMessage = 0
		timerID = setTimeout("showBanner()", pause)
		bannerRunning = true	}}
startBanner();

//document.write('<meta http-equiv=refresh content=600; url=self>')

title_tmp1=document.title
if (title_tmp1.indexOf(">>")!=-1){
	title_tmp2=title_tmp1.split(">>");
	title_last=" —> "+title_tmp2[1];
	title_last=title_last + " —> " + title_tmp2[2];
}else{

	if (title_tmp1.indexOf("——")!=-1){
	title_tmp2=title_tmp1.split("——");
	title_last=" —> "+title_tmp2[1];
		if (title_last==" —> "){title_last=" —> "};
		if (title_last==" —> "){title_last=" —> "};
	}
	else {	title_last="——欢迎你的光临"}
	}


title_new="福建晋江源丰雨具有限公司-----欢迎您的到来！！！"
step=0

function flash_title()
    {
      step++
      if (step==9) {step=1}
      if (step==1) {document.title='〈--------'+title_new+'--------〉'}
      if (step==2) {document.title='〈〈------'+title_new+'------〉〉'}
      if (step==3) {document.title='〈〈〈----'+title_new+'----〉〉〉'}
      if (step==4) {document.title='〈〈〈〈--'+title_new+'--〉〉〉〉'}
      if (step==5) {document.title='〈〈〈〈〈'+title_new+'〉〉〉〉〉'}
      if (step==6) {document.title='--〈〈〈〈'+title_new+'〉〉〉〉--'}
      if (step==7) {document.title='----〈〈〈'+title_new+'〉〉〉----'}
      if (step==8) {document.title='------〈〈'+title_new+'〉〉------'}
	  if (step==8) {document.title='--------〈'+title_new+'〉--------'}
      setTimeout("flash_title()",200);
    }
flash_title()
