//<!--
var i = 1; // first item to load

var fadeMax = 100; // level of fully visible text (black)
var fadeMin = 0; // level of fully invisible text (white)

var fadeStep = 1;
var fadingIn = false;
var fadeTimer = "";

var fadeCurrent = 100;

// Function to change the image block
function changeContent(){
	// Checks if the maximum number of quotes has been reached
	if(i > 10) {
		i = 1;
	} 
	// This loads the image from the list above into the <div id="head_image">
	document.getElementById("head_image").innerHTML = "<img src='wp-content/themes/writerscorp/images/Home" + i + ".jpg' alt=''>";
	// Increases the counter count
	i++;
}

function fade() {
  fadeCurrent += (fadingIn) ? fadeStep : -fadeStep;
  
  if (fadeCurrent >= fadeMax) {
    // start fading out
    fadingIn = false;
    window.clearInterval(fadeTimer);
    setTimeout("fadeTimer = window.setInterval('fade()', 100)", 10000);    
  } else if (fadeCurrent <= fadeMin) {
    // switch image and start fading in
    fadingIn = true;
    changeContent();
  }
  document.getElementById("head_image").style.opacity = fadeCurrent / 100;
  document.getElementById("head_image").style.filter = "alpha(opacity = " + fadeCurrent + ")";
}

function slideshowInit() {
  document.getElementById("head_image").style.zoom = 1;
  changeContent();
  fadeTimer = window.setInterval('fade()', 100);
}
//-->

// Preloads Images

// Preloads images
if (document.images)
{
  pic1= new Image(700,163); 
  pic1.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home2.jpg"; 
	
	pic2= new Image(700,163); 
  pic2.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home3.jpg";
	
	pic3= new Image(700,163); 
  pic3.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home4.jpg";	
 
  pic4= new Image(700,163); 
  pic4.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home5.jpg";
	
	pic5= new Image(700,163); 
  pic5.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home6.jpg";
	
	pic6= new Image(700,163); 
  pic6.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home7.jpg";
	
	pic7= new Image(700,163); 
  pic7.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home8.jpg";
	
	pic8= new Image(700,163); 
  pic8.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home9.jpg";
	
	pic9= new Image(700,163); 
  pic9.src="http://www.sfartscommission.org/WC/wp-content/themes/writerscorp/images/splash-width700/Home10.jpg";
}