var arrLink = document.links;
var thunderLen = arrLink.length;
var thunderSufix = ".rar;.zip;"
var arrSufix = thunderSufix.split(";");

for(var i=0;i<thunderLen;i++)
{	
	var temp =arrLink[i].href;
	var post = temp.lastIndexOf(".");
	var p = temp.substring(post,temp.length).toLowerCase();
	var k = arrSufix.length;
	var flag =false;
	var thunder_url = arrLink[i].href;
	var protocol=arrLink[i].protocol;
	//dzÊÊÓÃ
	var pathname=arrLink[i].pathname;
	var path=pathname.substring(pathname.lastIndexOf("/"),pathname.length);
	if(thunderPath == null)
	{
	   thunderPath="";
	}
	if(path == thunderPath && thunderPath != "")
	{
		flag=true;
	}
	//
	for(var k=0;k<arrSufix.length;k++)
	{
		if(p==arrSufix[k])
		{
			flag=true;
			break;
		}
	}
	if(protocol!="http:"&protocol!="ftp:"&protocol!="mms:"&protocol!="rtsp:")
	{
		flag=false;
	}	
	if(flag)
		{

		var str= arrLink[i].href
        str=str.replace('http://down.',"http://down1.")
		str=str.replace('ftp://idown:0987@ftp1.sooogl.com',"http://down.3dmodelfree.com")
        document.writeln("<div align=\'center\'><a href=\'"+str+"\'>Other Download<\/a></div>"); 
	
		}
}