// JavaScript Document
<!--
/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
Keep this notice intact please
*/

function random_img(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://www.mendi.net/images/random/chrytree-book.gif"
myimages[2]="http://www.mendi.net/images/random/cherries-book.gif"
myimages[3]="http://www.mendi.net/images/random/funky-book.gif"
myimages[4]="http://www.mendi.net/images/random/locked-book.gif"
myimages[5]="http://www.mendi.net/images/random/grunge-book.gif"
myimages[6]="http://www.mendi.net/images/random/heartgyle.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.cafepress.com/mendi/5030079"
imagelinks[2]="http://www.cafepress.com/mendi/4887324"
imagelinks[3]="http://www.cafepress.com/mendi/4204461"
imagelinks[4]="http://www.cafepress.com/mendi/4178662"
imagelinks[5]="http://www.cafepress.com/mendi/4174066"
imagelinks[6]="http://www.cafepress.com/mendi/3014927"

//specify corresponding text descriptions below --Tweeked by Mendi on 022605
var imgdscrpt=new Array()
imgdscrpt[1]="Cherry Tree Journal / Diary with lined pages. <br> designed by Mendi"
imgdscrpt[2]="Cherries Text Pattern Journal / Diary with lined pages. <br> designed by Mendi"
imgdscrpt[3]="Funky Dude Journal / Diary with lined or unlined pages.<br> designed by Mendi"
imgdscrpt[4]="Locked Heart and Key Journal / Diary with lined or unlined pages.<br> designed by Mendi"
imgdscrpt[5]="Grunge Style Journal / Diary with lined pages.<br> designed by Mendi"

var it=Math.floor(Math.random()*myimages.length)
if (it==0)
it=1
document.write('<a href="'+imagelinks[it]+'"><img src="'+myimages[it]+'" border=0></a><br>'+imgdscrpt[it]+'')
}
random_img()
//-->