//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=6000

//specify images
var slideimages=new Array("img/36-sunflowers.jpg","img/35-bike.jpg","img/37-garden.jpg","img/34-presents.jpg","img/33-pumpkin.jpg","img/29-snowflake.jpg","img/32-bliss.jpg","img/27-sprinkling.jpg","img/28-hurray.jpg","img/31-gifts.jpg","img/30-spice.jpg","img/26-homespun.jpg","img/25-crow.jpg","img/24-july.jpg","img/23-spring.jpg","img/22-winter.jpg","img/21-Dec25th.jpg","img/20-Fall.jpg","img/17-Gourds.jpg","img/13-Ruby.jpg","img/14-nineisfine.jpg","img/15-midsummer.jpg","img/16-annie.jpg","img/19-summer.jpg","img/3-favorite.jpg","img/4-stars.jpg","img/5-sherbert.jpg","img/6-summer.jpg","img/7-stars.jpg","img/8-littlebit.jpg","img/9-waiting.jpg","img/10-folksyspools.jpg","img/pumpkins.jpg","img/spools.jpg","img/11-fall.jpg","img/12-nicke.jpg")

//specify corresponding links
var slidelinks=new Array("CountryLore/patterns.html#thirtysix","CountryLore/patterns.html#thirtyfive","CountryLore/minis.html#thirtyseven","CountryLore/patterns.html#thirtyfour","CountryLore/patterns.html#thirtythree","CountryLore/minis.html#twentynine","CountryLore/patterns.html#thirtytwo","CountryLore/minis.html#twentyseven","CountryLore/minis.html#twentyeight","CountryLore/patterns.html#thirtyone","CountryLore/patterns.html#thirty","CountryLore/minis.html#twentysix","CountryLore/minis.html#twentyfive","CountryLore/minis.html#twentyfour","CountryLore/minis.html#twentythree","CountryLore/minis.html#twentytwo","CountryLore/minis.html#twentyone","CountryLore/minis.html#twenty","CountryLore/patterns.html#seventeen","CountryLore/patterns.html#thirteen","CountryLore/patterns.html#fourteen","CountryLore/patterns.html#fifteen","CountryLore/patterns.html#sixteen","CountryLore/minis.html#nineteen","CountryLore/patterns.html#three","CountryLore/patterns.html#four","CountryLore/patterns.html#five","CountryLore/patterns.html#six","CountryLore/patterns.html#seven","CountryLore/patterns.html#eight","CountryLore/patterns.html#nine","CountryLore/patterns.html#ten","CountryLore/patterns.html#two","CountryLore/patterns.html#one","CountryLore/patterns.html#eleven","CountryLore/patterns.html#twelve")

var newwindow=0 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}
