// JavaScript Document
function nsRotator(id, imgId, ancId, timeout) {
                this.id=id;
                this.imgId=imgId;
                this.ancId=ancId;
                this.idx=1;
                this.timeout=timeout;
 
                this.imgs=[
                                //"http://www.netspray.com/image1"
                ];
 
                this.ancs=[
                                //"http://www.netspray.com/link1"
                ];
 
                this.rotate=function(id) {
                                var obj=eval(id);
                                var img=document.getElementById(obj.imgId);
                                if(img) img.src=obj.imgs[obj.idx];
 
                                var anc=document.getElementById(obj.ancId);
                                if(anc) anc.href=obj.ancs[obj.idx];
 
                                ++obj.idx;
                                if(obj.idx>=obj.imgs.length) obj.idx=0;
 
                                setTimeout(id+".rotate('"+id+"')", obj.timeout);
                }
 
                this.start=function() {
                                setTimeout(this.id+".rotate('"+this.id+"')", this.timeout);
                }
 
    return true;
}
 
var r1=new nsRotator("r1", "img1", "a1", 5000);
r1.imgs=[
	"http://www.netspray.com/sellitanywhere/bin/W9XC8ML60FBNO432FQQT62IFTITH8NJZWC62H6XCBHMR0BEAPE33.xgif?sn=156&affId=1858&adStyle=2 '",

	"http://www.netspray.com/sellitanywhere/bin/QRNXXC8NLBWE60IGTJ32FL0FBNJQPI0BBIMMXC8PTM3BE9WA5ZH0.xgif?sn=170&affId=2167&adStyle=2 ",

		
	"http://www.netspray.com/sellitanywhere/bin/L7O5XC8OQU0EBHTJ36FLWA5UICWAMOXC8TJS0BBNPA34ECTJ63H6.xgif?sn=66&affId=2025&adStyle=2",
	
	"http://www.netspray.com/sellitanywhere/bin/8PFPQS0EBFNXXCIDTG36LBWB5XMN5ZH6TH36E7PA0BBIW98QJRXC.xgif?sn=1521&affId=1824&adStyle=2",
	
	"http://www.netspray.com/sellitanywhere/bin/TLWA62IIXC8ML70FBMNY32FTQW0B32EDPA5WH2TN8UJYWCBEMQXC.xgif?sn=141&affId=198&adStyle=2",
	
	"http://www.netspray.com/sellitanywhere/bin/O162IETH36FKQW0EBMW98TL6XCBGPG0CEATI33GYWG5YJTXC8RMM.xgif?sn=421&affId=2155&adStyle=2",
	
	"http://www.netspray.com/sellitanywhere/bin/TLWA62IIXC8ML70FBKNY32FTQWH3BJMQXC8TJRWF61QP0EECTK32.xgif?sn=138&affId=2074&adStyle=2",
	
	"http://www.netspray.com/sellitanywhere/bin/BLFLQO0FIJTJ32L8WH62NXXC8MPBWA60GZTO3BE7XC8QJW0BBMMM.xgif?sn=140&affId=1971&adStyle=2",
	
	"http://www.netspray.com/sellitanywhere/bin/WBIETH32FSQV0FBJO0XC8QL5600CPE33EBTO5WH5WD8PJWXCBEMJ.xgif?sn=246&affId=2168&adStyle=2"
];
r1.ancs=[
	"http://www.netspray.com/sellitnow/bin?id=W9XC8ML60FBNO432FQQT62IFTITH8NJZWC62H6XCBHMR0BEAPE33&affId=1858",

	"http://www.netspray.com/sellitnow/bin?id=QRNXXC8NLBWE60IGTJ32FL0FBNJQPI0BBIMMXC8PTM3BE9WA5ZH0&affId=2167",
		
	"http://www.netspray.com/sellitnow/bin?id=L7O5XC8OQU0EBHTJ36FLWA5UICWAMOXC8TJS0BBNPA34ECTJ63H6&affId=2025",
	
	"http://www.netspray.com/sellitnow/bin?id=8PFPQS0EBFNXXCIDTG36LBWB5XMN5ZH6TH36E7PA0BBIW98QJRXC&affId=1824",
	
	"http://www.netspray.com/sellitnow/bin?id=TLWA62IIXC8ML70FBMNY32FTQW0B32EDPA5WH2TN8UJYWCBEMQXC&affId=198",
	
	"http://www.netspray.com/sellitnow/bin?id=O162IETH36FKQW0EBMW98TL6XCBGPG0CEATI33GYWG5YJTXC8RMM&affId=2155",
	
	"http://www.netspray.com/sellitnow/bin?id=TLWA62IIXC8ML70FBKNY32FTQWH3BJMQXC8TJRWF61QP0EECTK32&affId=2074",
	
	"http://www.netspray.com/sellitnow/bin?id=BLFLQO0FIJTJ32L8WH62NXXC8MPBWA60GZTO3BE7XC8QJW0BBMMM&affId=1971",
	
	"http://www.netspray.com/sellitnow/bin?id=WBIETH32FSQV0FBJO0XC8QL5600CPE33EBTO5WH5WD8PJWXCBEMJ&affId=2168"
];
r1.start();


