/*
Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
Updated: 00/04/25
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://sneakykitchen.com/fullerbrush/images-flash/868a.gif"
myimages[2]="http://sneakykitchen.com/fullerbrush/images-flash/322a.gif"
myimages[3]="http://sneakykitchen.com/fullerbrush/images-flash/119.gif"
myimages[4]="http://sneakykitchen.com/fullerbrush/images-flash/204808.gif"
myimages[5]="http://sneakykitchen.com/fullerbrush/images-flash/130.gif"
myimages[6]="http://sneakykitchen.com/fullerbrush/images-flash/earn.gif"
myimages[7]="http://sneakykitchen.com/wtkns/images-gif/holidays.gif"
myimages[8]="http://sneakykitchen.com/kitchen/images-gif/for-tupperware.gif"
myimages[9]="http://sneakykitchen.com/wtkns/images-gif/seasons.gif"
myimages[10]="http://sneakykitchen.com/myavon/images-gif/never-too-early.gif"
myimages[11]="http://sneakykitchen.com/images_ads/vitamix_affiliate_top.gif"
myimages[12]="http://sneakykitchen.com/images_ads/amazon_hg-kitchen_728x90.gif"
myimages[13]="http://sneakykitchen.com/images_ads/avon-holidays2.jpg"
myimages[14]="http://sneakykitchen.com/images_ads/banner_affiliate_728x90_gogreen_0710.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://sneakykitchen.com/fullerbrush/868.htm"
imagelinks[2]="http://sneakykitchen.com/fullerbrush/322.htm"
imagelinks[3]="http://sneakykitchen.com/fullerbrush/119806.htm"
imagelinks[4]="http://sneakykitchen.com/fullerbrush/204808.htm"
imagelinks[5]="http://sneakykitchen.com/fullerbrush/156.htm"
imagelinks[6]="http://sneakykitchen.com/fullerbrush/earn.htm"
imagelinks[7]="http://sneakykitchen.com/wtkns/index.htm"
imagelinks[8]="http://sneakykitchen.com/kitchen/products.htm"
imagelinks[9]="http://sneakykitchen.com/wtkns/index.htm"
imagelinks[10]="http://sneakykitchen.com/myavon/index.htm"
imagelinks[11]="https://secure.vitamix.com/?COUPON=06-002435" 
imagelinks[12]="http://www.amazon.com/b?node=284507&tag=thesneakykitchen&camp=15433&creative=374193&linkCode=ur1&adid=06QDN9M4FHTWAPEXVWPB&"
imagelinks[13]="http://sneakykitchen.com/myavon/index.htm"
imagelinks[14]="https://secure.vitamix.com/?COUPON=06-002435" 



var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a target="_blank" href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=1></a>')
}
random_imglink()
//-->

