		//
		//
		// SLIDESHOW #1
		//
		//

		// Set slideShowSpeed (milliseconds)
		var slideShowSpeed1 = 4000;
 
		// Duration of crossfade (seconds)
		var crossFadeDuration1 = 3;
 
		// Specify the image files
		var Pic1 = new Array() // don't touch this;

		// to add more images, just continue
		// the pattern, adding to the array below
 
		Pic1[0] = '/images/template/header/slideshow1/01.jpg';
		Pic1[1] = '/images/template/header/slideshow1/02.jpg';
 
		// =======================================
		// do not edit anything below this line
		// =======================================
 
		var t1;
		var j1 = 0;
		var p1 = Pic1.length;
 
		var preLoad1 = new Array()
		for (i = 0; i < p1; i++)
		{
			preLoad1[i] = new Image();
			preLoad1[i].src = Pic1[i];
		}
 
		function runSlideShow1()
		{
			if (document.all)
			{
				document.images.SlideShow1.style.filter="blendTrans(duration=2)";
				document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration1)";
				document.images.SlideShow1.filters.blendTrans.Apply();
			}
			document.images.SlideShow1.src = preLoad1[j1].src;

			if (document.all)
			{
				document.images.SlideShow1.filters.blendTrans.Play();
			}

			j1++;
			if ( j1 > ( p1 - 1) ) j1=0;

			t1 = setTimeout( 'runSlideShow1()', slideShowSpeed1 );
		}

		//
		//
		// SLIDESHOW #2
		//
		//

		// Set slideShowSpeed (milliseconds)
		var slideShowSpeed2 = 3500;
 
		// Duration of crossfade (seconds)
		var crossFadeDuration2 = 1;
 
		// Specify the image files
		var Pic2 = new Array() // don't touch this;

		// to add more images, just continue
		// the pattern, adding to the array below
 
		Pic2[0] = '/images/template/header/slideshow2/01.jpg';
		Pic2[1] = '/images/template/header/slideshow2/02.jpg';
 
		// =======================================
		// 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 runSlideShow2()
		{
			if (document.all)
			{
				document.images.SlideShow2.style.filter="blendTrans(duration=2)";
				document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration2)";
				document.images.SlideShow2.filters.blendTrans.Apply();
			}
			document.images.SlideShow2.src = preLoad2[j2].src;

			if (document.all)
			{
				document.images.SlideShow2.filters.blendTrans.Play();
			}

			j2++;
			if ( j2 > ( p2 - 1) ) j2=0;

			t2 = setTimeout( 'runSlideShow2()', slideShowSpeed2 );
		}


		//
		//
		// SLIDESHOW #3
		//
		//

		// Set slideShowSpeed (milliseconds)
		var slideShowSpeed3 = 5000;
 
		// Duration of crossfade (seconds)
		var crossFadeDuration3 = 1;
 
		// Specify the image files
		var Pic3 = new Array() // don't touch this;

		// to add more images, just continue
		// the pattern, adding to the array below
 
		Pic3[0] = '/images/template/header/slideshow3/01.jpg';
		Pic3[1] = '/images/template/header/slideshow3/02.jpg';
 
		// =======================================
		// do not edit anything below this line
		// =======================================
 
		var t3;
		var j3 = 0;
		var p3 = Pic3.length;
 
		var preLoad3 = new Array()
		for (i = 0; i < p3; i++)
		{
			preLoad3[i] = new Image();
			preLoad3[i].src = Pic3[i];
		}
 
		function runSlideShow3()
		{
			if (document.all)
			{
				document.images.SlideShow3.style.filter="blendTrans(duration=2)";
				document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration2)";
				document.images.SlideShow3.filters.blendTrans.Apply();
			}
			document.images.SlideShow3.src = preLoad3[j3].src;

			if (document.all)
			{
				document.images.SlideShow3.filters.blendTrans.Play();
			}

			j3++;
			if ( j3 > ( p3 - 1) ) j3=0;

			t3 = setTimeout( 'runSlideShow3()', slideShowSpeed3 );
		}
