var imgArray = new Array();
imgArray[0]="images/03.jpg";
imgArray[1]="images/04.jpg";
imgArray[2]="images/05.jpg";
imgArray[3]="images/06.jpg";

var tipsArray = new Array();
tipsArray[0]="复星集团（改版设计）";
tipsArray[1]="http://www.renjie.com.cn";
tipsArray[2]="http://www.sametrip.com.cn";
tipsArray[3]="http://www.atek-china.net";
var tip2sArray = new Array();
tip2sArray[0]="Flash,Html,Asp.Net,SQL Server";
tip2sArray[1]="Flash,Html,Asp.Net,SQL Server";
tip2sArray[2]="Flash,Html,PHP,Linux,MySQL";
tip2sArray[3]="大型Flash主题网站,SQL Server";

function change(i)
{
	document.all['mypic'].src=imgArray[i];
	document.all['tips'].innerText=tipsArray[i];
	document.all['tip2s'].innerText=tip2sArray[i];
}

