﻿// JavaScript Document
// 预装载图像
var theImages = new Array(2);
for(var i=0;i<theImages.length;i++)
{
  theImages[i] = new Image();
  theImages[i].src = '../../Content/Images/'+i+'.gif';
}
// 预装载链接
var links = new Array(
 'http://www.google.cn',
 'http://www.sogou.com'
)
var h=0;
// 动画图片
function showImage()
{
 document.images["myImages"].src=theImages[h].src;
 h++;
 if(h>theImages.length-1)
 h=0;
 setTimeout(showImage,3000);
}
// 打开链接的网页
function go()
{
 window.open("/mail/create",'_blank');
}

