// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 6000
// Duration of crossfade (seconds)
var crossFadeDuration = 3
// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below
Pic[0] = 'media/BoyScout-House.jpg';
Pic[1] = 'media/HSTower.jpg';
Pic[2] = 'media/Euclid-Memorial.jpg';
Pic[3] = 'media/Chaffey-Library.jpg';
Pic[4] = 'media/Airport.jpg';

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 runSlideShow(){
    if (document.all){
      document.images.SlideShow.style.filter='blendTrans(duration=2)'
      document.images.SlideShow.style.filter='blendTrans(duration=crossFadeDuration)'
      document.images.SlideShow.filters.blendTrans.Apply()      
    }
    document.images.SlideShow.src = preLoad[j].src
    if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
    }
    j = j + 1
    if (j > (p-1)) j=0
        t = setTimeout('runSlideShow()', slideShowSpeed)
}

var dest
function WhereTo1(objSel)
{
  var dest = objSel.options[objSel.selectedIndex].value;
  window.location = dest;
}

<!--
function PopPage()
{
 new_window = window.open('http://www.breelane.com/FeaturedProps.html','popwindow', 'resizable,width=350,height=350,left=10,top=10');
}
// -->

<!--
function goSearch()
{
        params = "";
        params += "toolbar=0,";
        params += "location=0,";
        params += "directories=0,";
        params += "status=0,";
        params += "menubar=0,";
        params += "scrollbars=1,";
        params += "resizable=1,";
        params += "width=625,";
        params += "height=465"
        params += "left=10,";
        params += "top=10";
        params += "screenX=200,";
        params += "screenY=100";

	new_window = window.open("http://www.imrmls.com:8080/html/pubaccess/" + document.forms[0].proptype.options[document.forms[0].proptype.selectedIndex].value + ".html",'popwindow',params);

}
// -->

<!--	give this window the focus
function infront () {
	BN = navigator.appName;
	BV = parseInt(navigator.appVersion);
	BFlag = "No";
	if (BN == "Netscape" && BV >= 3) BFlag = "n3";
	else if (BN == "Microsoft Internet Explorer" && BV >= 4) BFlag = "e4";
	else BFlag = "No";

	if ( BFlag != "No" ) {
		this.focus();
		return 1;
	}
	return 0;
}
// -->
