﻿ function headerFader(which_section) {
 
	 if (which_section=='home'){
		var header_images=new Array(10);
		header_images[0]="image01.jpg";
		header_images[1]="image02.jpg";
		header_images[2]="image03.jpg";
		header_images[3]="image04.jpg";
		header_images[4]="image05.jpg";
		header_images[5]="image06.jpg";
		header_images[6]="image07.jpg";
		header_images[7]="image08.jpg";
		header_images[8]="image09.jpg";
		header_images[9]="image10.jpg";
	} else {
		var header_images=new Array(5);
		header_images[0]="image01.jpg";
		header_images[1]="image02.jpg";
		header_images[2]="image03.jpg";
		header_images[3]="image04.jpg";
		header_images[4]="image05.jpg";
	}
	
	var i=0;
	var no_images=header_images.length-1;
	document.writeln('<ul id="header_img">');
	for (i=0;i<=no_images;i++){
		document.writeln('<li><img src="/external/wcpages/images/header_'+which_section+'/'+header_images[i]+'" alt="St. Helena, CA - heart of the napa valley" width="960" height="200" border="0" /></li>');
	} 
	document.writeln('</ul>');
	
}

$(document).ready( function(){
	$('#header_img').innerfade({
		//Type of animation 'fade' or 'slide' (Default: 'fade')
		animationtype: 'fade',
		//Fadingspeed in milliseconds or keywords (slow, normal or fast)(Default: 'normal')
		speed: 2000,
		//Time between the fades in milliseconds (Default: '2000')
		timeout: 5000,
		//Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence')
		type: 'random_start',
		//Height of the containing element in any css-height-value (Default: 'auto') 
		containerheight: '200',
		//CSS-Class which the container getâ€™s applied (Default: 'innerfade')
		runningclass: 'innerfade'
	});
} );

