			var RandomSrc = "xiaobangAD.gif"                     //飘动图片地址
			var RandomFlash = "gif"                           //飘动图片类型
			var RandomHref = "http://www.singee-pearl.com/singee-pearl_article/onews.asp?id=176"     //飘动图片连接地址
			var RandomWidth = 100                              //飘动图片宽度
			var RandomHeight = 100                            //飘动图片高度
			var ADimageAlt = "心艺珍珠大量批发销售,小蚌-小珍珠蚌" //飘动图片说明


//以下内容不要去修改
document.write("<DIV id=imgID style=\"LEFT: 110px; VISIBILITY: visible; WIDTH: 110px; POSITION: absolute; TOP: 110px; HEIGHT: 110px\">")

if (RandomSrc != "") {
				if (RandomFlash == "flash") {
					document.write("<embed src=\"" + RandomSrc + "\" quality=\"high\"  width=\"" + RandomWidth + "\" height=\"" + RandomHeight + "\" type=\"application/x-shockwave-flash\"></embed>");
				}
				else{
					document.write("<a href=\"" + RandomHref +"\"><img src=\"" + RandomSrc + "\"  width=\"" + RandomWidth + "\" height=\"" + RandomHeight + "\"  border=\"0\" alt=\""   + ADimageAlt + "\" \></a>");
				}
			}

document.write("</DIV>");


var xPos = 380;
var yPos = 300;
var step = 1;
var delay = 30;
var height = 0;
var Hoffset = 0;
var Woffset = 380;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
imgID.style.top = yPos;
function changePos() {
width = document.body.clientWidth;
height = document.body.clientHeight;
Hoffset = imgID.offsetHeight;
Woffset = imgID.offsetWidth;
imgID.style.left = xPos;
imgID.style.top = yPos + document.body.scrollTop;
if (yon) {
yPos = yPos + step;
}
else {
yPos = yPos - step;
}
if (yPos < 0) {
yon = 1;
yPos = 0;
}
if (yPos >= (height - Hoffset)) {
yon = 0;
yPos = (height - Hoffset);
}
if (xon) {
xPos = xPos + step;
}
else {
xPos = xPos - step;
}
if (xPos < 380) {
xon = 1;
xPos = 380;
}
if (xPos >= (width - Woffset)) {
xon = 0;
xPos = (width - Woffset);
   }
}

function start() {
imgID.visibility = "visible";
interval = setInterval('changePos()', delay);
}

function pause_resume() {
if(pause) {
clearInterval(interval);
pause = false;
}
else {
interval = setInterval('changePos()',delay);
pause = true;
   }
}
start();
