
var widths=278; //这个数值是效果显示的宽度   
var heights=223   //这个数值是效果显示的高度           
var counts=5;   //这个数值是共有几张图片
var nn=1;
var key=0;
function change_img()
{if(key==0){key=1;}
else if(document.all)
{document.getElementById("pic").filters[0].Apply();document.getElementById("pic").filters[0].Play(duration=2);}
eval('document.getElementById("pic").src=img'+nn+'.src');
eval('document.getElementById("url").href=url'+nn+'.src');
for (var i=1;i<=counts;i++){document.getElementById("xxjdjj"+i).className='axx';}
document.getElementById("xxjdjj"+nn).className='bxx';
nn++;if(nn>counts){nn=1;}
tt=setTimeout('change_img()',4000);}
function changeimg(n){nn=n;window.clearInterval(tt);change_img();}
document.write('<style>');
document.write('.axx{padding:1px 7px;border-left:#cccccc 1px solid;}');
document.write('a.axx:link,a.axx:visited{text-decoration:none;color:#fff;line-height:12px;font:9px sans-serif;background-color:#666;}');
document.write('a.axx:active,a.axx:hover{text-decoration:none;color:#fff;line-height:12px;font:9px sans-serif;background-color:#999;}');
document.write('.bxx{padding:1px 7px;border-left:#cccccc 1px solid;}');
document.write('a.bxx:link,a.bxx:visited{text-decoration:none;color:#fff;line-height:12px;font:9px sans-serif;background-color:#D34600;}');
document.write('a.bxx:active,a.bxx:hover{text-decoration:none;color:#fff;line-height:12px;font:9px sans-serif;background-color:#D34600;}');
document.write('</style>');
document.write('<div style="width:'+widths+'px;height:'+heights+'px;overflow:hidden;text-overflow:clip;">');
document.write('<div><a id="url" target="_blank"><img id="pic" style="border:0px;filter:progid:dximagetransform.microsoft.wipe(gradientsize=1.0,wipestyle=4, motion=forward)" width='+widths+' height='+heights+' /></a></div>');
document.write('<div style="filter:alpha(style=1,opacity=10,finishOpacity=80);background: #888888;width:100%-2px;text-align:right;top:-12px;position:relative;margin:1px;height:12px;padding:0px;margin:0px;border:0px;">');
for(var i=1;i<counts+1;i++){document.write('<a href="javascript:changeimg('+i+');" id="xxjdjj'+i+'" class="axx" target="_self">'+i+'</a>');}
document.write('</div></div>');
change_img();


//以下是鼠标悬停图片移动代码
/*触发事件*/
function mouse_0(obj){
	var imgbox=document.getElementById("imgbox");
	imgbox.style.visibility='visible';
	var img = document.createElement("img");
	img.src=obj.src;
	img.style.width=obj.width * 2;
	img.style.height=obj.height * 2;
	imgbox.innerHTML='';
	imgbox.appendChild(img);
}
/*移动事件*/
function mouse_1(obj,e){
	var browerHeight=document.documentElement.clientHeight; //浏览器高度
	var browerWidth=document.documentElement.clientWidth; //浏览器宽度
	var mouseY=e.clientY; //当前光标Y位置
	var mouseX=e.clientX; //当前光标X位置
	var scrollTop=document.documentElement.scrollTop; //垂直滚动条距离顶部
	var scrollLeft=document.documentElement.scrollLeft //水平滚动条距离左边
	if (mouseY+obj.height * 2 + 20 <= browerHeight) var height = true; //当前光标Y位置 + 对象高度 <= 浏览器高度 ，则height为真
	if (browerWidth-mouseX > mouseX) var width = true; //光标距离右边如果大于左边 ，则width为真
	if(height)
		y=scrollTop+mouseY+20;
	else
		y=scrollTop + browerHeight-obj.height * 2 - 20;
	if(width)
		x=scrollLeft+mouseX+20;
	else
		x=scrollLeft+mouseX-obj.width * 2 -20;
	document.getElementById("imgbox").style.left=x + "px";
	document.getElementById("imgbox").style.top=y + "px";
}
/*离开事件*/
function mouse_2(){
	document.getElementById("imgbox").style.visibility='hidden';
}
