// JavaScript Document
// Fade In and Out of Front Page Images

document.write("<style type='text/css'> #MarketingSlide {visibility:hidden;} </style>");

current=0;
fade = 'out';
pic2 = new Image(200, 200);
pic2.src = "../graphics/Iowa5thQofL.jpg";

function changeSlide() {
	imageId = 'MarketingSlide';
	holderId = 'Marketing';
	image = document.getElementById(imageId);
	holder = document.getElementById(holderId);
	if (fade=='out') {
		if (current==0) {
			setOpacity(image, 0);
			image.style.visibility = 'visible';
			fadeIn(imageId,0);
			current=1; fade='in';
		} else 
		if (current==1) { 
			holder.innerHTML = '<span id="MarketingSlide"><img src="graphics/Iowa2ndQofL.jpg" alt="Iowa Ranked 2nd in Quality of Life"  style="float:left;" /><br /><i style="line-height:24px;">"Jones County Development is proud to announce that Iowa has moved UP TO 2nd from 5th in the nation when it comes to quality of life according to Morgan Quitno Press, a publisher of annual state rankings."</i><br /><br /><b style="float: right;"> - Marty Kelzer (JCEDC Executive Director)</b></span>'; 
			imageId = 'MarketingSlide';
			image = document.getElementById(imageId);
			setOpacity(image, 0);
			image.style.visibility = 'visible';
			fadeIn(imageId,0);
			current=2; fade='in';
		} else
		if (current==2) { 
			holder.innerHTML = '<span id="MarketingSlide"><i><img src="files/DougWortman.jpg" alt="Doug Wortman Picture"  style="float:left; margin:5px; padding:5px; background:#ffffff; border:solid 1px #f5f5f5;" height="160px" /><br />"Orbis is very proud of it&rsquo;s work force at the Monticello Iowa Plant.  The entire Monticello Plant Team has built an operation that continues to provide positive results for Orbis year after year.  Their success is attributed to solid safety and quality results as well as, the strong work ethic which executes effective continuous improvement ideas which deliver to the bottom line.  Such attributes help persevere in our current economic climate."</i><br /><b style="float: right;"> - Doug Wortman (Orbis in Monticello, IA)</b></span>'; 
			imageId = 'MarketingSlide';
			image = document.getElementById(imageId);
			setOpacity(image, 0);
			image.style.visibility = 'visible';
			fadeIn(imageId,0);
			current=3; fade='in';
		} else
		if (current==3) { 
			holder.innerHTML = '<span id="MarketingSlide"><img src="graphics/MonticelloRegionalAirport2.jpg" style=" float:left; margin:5px; padding:5px; background:#ffffff; border:solid 1px #f5f5f5;" height="190px" alt="Monticello Regional Airport"  style="float:left;" /><br /><i>The Monticello Regional Airport was dedicated on Aug. 12, 2001 to the past, present and future aviators. The Monticello Regional Airport is about a half mile south of Monticello along HWY 38. It is the only public Airport in Jones County. <br /><a href="/monticello-regional-airport.php" target="_blank">(Click Here for More About the Monticello Regional Airport)</a></i>';
			imageId = 'MarketingSlide';
			image = document.getElementById(imageId);
			setOpacity(image, 0);
			image.style.visibility = 'visible';
			fadeIn(imageId,0);
			current=4; fade='in';
		} else
		if (current==4) { 
			holder.innerHTML = '<span id="MarketingSlide"><img src="graphics/MartyKelzer.jpg" style=" float:left; margin:5px; padding:5px; background:#ffffff; border:solid 1px #f5f5f5;" alt="Marty Kelzer Picture" height="190px" /><br /><i style="line-height:24px;">"Welcome to Jones County, IA. Thank you for visiting our economic development website. We are excited with what is happening here and encourage you to be part of it!!"<br /><a href="/files/LetterFromTheDirector.pdf" target="_blank">(Click Here for Marty&rsquo;s Full PDF Letter)</a></i><br /><br /><b style="float: right;"> - Marty Kelzer (JCEDC Executive Director)</b></span>'; 
			imageId = 'MarketingSlide';
			image = document.getElementById(imageId);
			setOpacity(image, 0);
			image.style.visibility = 'visible';
			fadeIn(imageId,0);
			current=1; fade='in';
		}
		setTimeout("changeSlide()", 8000);
	} else {
		fadeOut(imageId, 100);
		fade='out';
		setTimeout("changeSlide()", 750);
	}
}

/*function initImage() {
  imageId = 'image1';
  image = document.getElementById(imageId);
  setOpacity(image, 0);
  image.style.visibility = 'visible';
  fadeIn(imageId,0);
}*/

function setOpacity(obj, opacity) {
  opacity = (opacity == 100)?99.999:opacity;
  
  // IE/Win
  obj.style.filter = "alpha(opacity:"+opacity+")";
  
  // Safari<1.2, Konqueror
  obj.style.KHTMLOpacity = opacity/100;
  
  // Older Mozilla and Firefox
  obj.style.MozOpacity = opacity/100;
  
  // Safari 1.2, newer Firefox and Mozilla, CSS3
  obj.style.opacity = opacity/100;
}

function fadeIn(objId,opacity) {
  if (document.getElementById) {
	obj = document.getElementById(objId);
    if (opacity <= 100) {
      setOpacity(obj, opacity);
      opacity += 10;
      window.setTimeout("fadeIn('"+objId+"',"+opacity+")", 50);
    }
  }
}

function fadeOut(objId,opacity) {
  if (document.getElementById) {
    obj = document.getElementById(objId);
    if (opacity >= 0) {
      setOpacity(obj, opacity);
      opacity -= 10;
      window.setTimeout("fadeOut('"+objId+"',"+opacity+")", 50);
    }
  }
}

window.onload = function() { 
	changeSlide();
}