// JavaScript Document
<!--
var ImgSrc = new Array();//图片地址
ImgSrc[0] = "images/jay/2.jpg"
ImgSrc[1] = "images/jay/3.jpg"
ImgSrc[2] = "images/jay/4.jpg"
ImgSrc[3] = "images/jay/5.jpg"
ImgSrc[4] = "images/jay/6.jpg"
ImgSrc[5] = "images/jay/7.jpg"
ImgSrc[6] = "images/jay/8.jpg"
ImgSrc[7] = "images/jay/9.jpg"
ImgSrc[8] = "images/jay/10.jpg"
ImgSrc[9] = "images/jay/11.jpg"
ImgSrc[10] = "images/jay/12.jpg"
ImgSrc[11] = "images/jay/1.jpg"


for (var i=0;i<ImgSrc.length;i++){(new Image()).src = ImgSrc[i];}//预加载图片

var ImgAlt = new Array();//鼠标放上去显示的文字
ImgAlt[0] = ""
ImgAlt[1] = ""
ImgAlt[2] = ""
ImgAlt[3] = ""
ImgAlt[4] = ""
ImgAlt[5] = ""
ImgAlt[6] = ""
ImgAlt[7] = ""
ImgAlt[7] = ""
ImgAlt[7] = ""

var ImgHerf =  new Array();//链接
ImgHerf[0] = ""
ImgHerf[1] = ""
ImgHerf[2] = ""
ImgHerf[3] = ""
ImgHerf[4] = ""
ImgHerf[5] = ""
ImgHerf[6] = ""
ImgHerf[7] = ""

var step=0;
function slideit(){
	//rewrite by haiwa@2005-7-7
	var oImg = document.getElementById("javascript.img");
	if (document.all){oImg.filters.blendTrans.apply();}
	oImg.src=ImgSrc[step];
	//document.getElementById("javascript.a").href=ImgHerf[step];
	oImg.title=ImgAlt[step];
	if (document.all){oImg.filters.blendTrans.play();}
	step = (step<(ImgSrc.length-1))?(step+1):0;
	(new Image()).src = ImgSrc[step];//加载下一个图片
}
setInterval("slideit()",4000);
//-->
<!--
	// Funktion f脙录r die Mouseover-Effekte im Navigationsmen脙录 (Link & Tabellenzelle)
function link_on(td_element, dot_td_color, dot_color, td_center, td_right, text, link_element, linkdeco, linkcolor, cursor) {
//alert(td_element+' dot_td:'+dot_td_color+' dot_color:'+dot_color+' td_center:'+td_center+' td_right:'+td_right+' text:'+text+' link_element:'+link_element+' linkdeco:'+linkdeco+' linkcolor:'+linkcolor+' cursor:'+cursor);
	window.status = text;
	// die TD mit dem DIV-Dot
	if(document.getElementById(td_element+'_dot_td') ) {	
		with(document.getElementById(td_element+'_dot_td')) {
			if(dot_td_color != "") {style.backgroundColor = dot_td_color; }
			//if(cursor != "") {style.cursor = cursor;}
		}
	}	
	// das DIV mit dem Dot
	if(document.getElementById(td_element+'_dot') ) {	
		with(document.getElementById(td_element+'_dot')) {
			if(dot_color != "") {style.backgroundColor = dot_color; }
			//if(cursor != "") {style.cursor = cursor;}
		}
	}	
	// die mittlere Zelle
	if(document.getElementById(td_element+'_center') ) {	
		with(document.getElementById(td_element+'_center')) {
			if(td_center != "") {style.backgroundColor = td_center; }
		}
	}
	// die rechte Zelle
	if(document.getElementById(td_element+'_right') ) {		
		with(document.getElementById(td_element+'_right')) {
			if(td_right != "") {style.backgroundColor = td_right; }
		}
	}	
	// der linke Teil vor dem Link
	if(document.getElementById(link_element+'_pre') ) {	
		with(document.getElementById(link_element+'_pre')) {
			if(linkcolor != "") { style.color= linkcolor; }
			if(linkdeco != "") { style.textDecoration = linkdeco; }
		}
	}
	// der Link
	if(document.getElementById(link_element) ) {	
		with(document.getElementById(link_element)) {
			if(linkcolor != "") { style.color= linkcolor; }
			if(linkdeco != "") { style.textDecoration = linkdeco; }
		}
	}
 }
	// Funktion f脙录r Aufhebung der Mouseover-Effekte im Navigationsmen脙录 "onMouseOut" (Link & Tabellenzelle)
function link_off(td_element, dot_td_color, dot_color, td_center, td_right, text, link_element, linkdeco, linkcolor, cursor, classname) {

	window.status = '';

	// die TD mit dem DIV-Dot
	if(document.getElementById(td_element+'_dot_td') ) {		
		with(document.getElementById(td_element+'_dot_td')) {
			if(dot_td_color != "") {style.backgroundColor = dot_td_color; }
			if(cursor != "") {style.cursor = cursor;}
		}
	}
	// das DIV mit dem Dot
	if(document.getElementById(td_element+'_dot') ) {	
		with(document.getElementById(td_element+'_dot')) {
			if(dot_color != "") {style.backgroundColor = dot_color; }
			if(cursor != "") {style.cursor = cursor;}
		}
	}	
	// die mittlere Zelle
	if(document.getElementById(td_element+'_center') ) {	
		with(document.getElementById(td_element+'_center')) {
			if(td_center != "") {style.backgroundColor = td_center; }
		}
	}	
	// die rechte Zelle
	if(document.getElementById(td_element+'_right') ) {	
		with(document.getElementById(td_element+'_right')) {
			if(td_right != "") {style.backgroundColor = td_right; }
		}
	}	
		if(classname != "") {
			// Wenn in der Template-Konfiguration eine CSS-Klasse zugewiesen wurde, diese "onMouseOut" wieder zuweisen
			if(document.getElementById(link_element) ) {	
				with(document.getElementById(link_element)) {
					style.color = '';
					style.textDecoration = '';
				}
				document.getElementById(link_element).className = classname;
			}
		} else {
			// Wenn KEINE CSS-Klasse zugewiesen ist, "onMouseOut" Konfigurationswerte zuweisen
			// der linke Teil vor dem Link
			if(document.getElementById(link_element+'_pre') ) {	
				with(document.getElementById(link_element+'_pre')) {
					if(linkcolor != "") { style.color= linkcolor; }
					if(linkdeco != "") { style.textDecoration = linkdeco; }
				}
			}
			
			if(document.getElementById(link_element) ) {	
				with(document.getElementById(link_element)) {
					if(linkcolor != "") { style.color= linkcolor; }
					if(linkdeco != "") { style.textDecoration = linkdeco; }
				}
			}
		}
	}
//-->
