// JavaScript Document
//
//-->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin Large Slide
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 10000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'graphics/large_images_00.jpg'
Pic[1] = 'graphics/large_images_01.jpg'
Pic[2] = 'graphics/large_images_02.jpg'
Pic[3] = 'graphics/large_images_03.jpg'
Pic[4] = 'graphics/large_images_04.jpg'
/*Pic[5] = 'graphics/butchersHall/venue02.jpg'
Pic[6] = 'graphics/butchersHall/deco02.jpg'
Pic[7] = 'graphics/butchersHall/party03.jpg'
Pic[8] = 'graphics/butchersHall/venue03.jpg'
Pic[9] = 'graphics/butchersHall/deco03.jpg'
Pic[10] = 'graphics/butchersHall/venue04.jpg'
Pic[11] = 'graphics/butchersHall/deco04.jpg'
*/
// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function largeSlide() {
if (document.all) {
document.images.large_slide.style.filter="blendTrans(duration=2)";
document.images.large_slide.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.large_slide.filters.blendTrans.Apply();
}
document.images.large_slide.src = preLoad[j].src;
if (document.all) {
document.images.large_slide.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('largeSlide()', slideShowSpeed);
}
//  End -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin Small Slide
// Set slideShowSpeed (milliseconds)
var slideShowSpeed2 = 6000;
// Duration of crossfade (seconds)
var crossFadeDuration2 = 3;
// Specify the image files
var Pic2 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic2[0] = 'graphics/small_images_00.gif'
Pic2[1] = 'graphics/small_images_01.gif'
Pic2[2] = 'graphics/small_images_02.gif'
Pic2[3] = 'graphics/small_images_03.gif'
Pic2[4] = 'graphics/small_images_04.gif'
Pic2[5] = 'graphics/small_images_05.gif'
Pic2[6] = 'graphics/small_images_06.gif'
Pic2[7] = 'graphics/small_images_07.gif'
Pic2[8] = 'graphics/small_images_08.gif'
Pic2[9] = 'graphics/small_images_09.gif'
Pic2[10] = 'graphics/small_images_10.gif'
// do not edit anything below this line
var t2;
var j2 = 0;
var p2 = Pic2.length;
var preLoad2 = new Array();
for (i = 0; i < p2; i++) {
preLoad2[i] = new Image();
preLoad2[i].src = Pic2[i];
}
function smallSlide() {
if (document.all) {
document.images.small_slide.style.filter="blendTrans(duration=2)";
document.images.small_slide.style.filter="blendTrans(duration=crossFadeDuration2)";
document.images.small_slide.filters.blendTrans.Apply();
}
document.images.small_slide.src = preLoad2[j2].src;
if (document.all) {
document.images.small_slide.filters.blendTrans.Play();
}
j2 = j2 + 1;
if (j2 > (p2 - 1)) j2 = 0;
t = setTimeout('smallSlide()', slideShowSpeed2);
}
//  End -->
/*window.onload=function(){ 

     if(document.getElementsByTagName){ 

          largeSlide();	smallSlide();		 

     } 

} 
*/