﻿var bannerImg = new Array();
	//hs_1
	    bannerImg[0]="/_assets/002/images/_subfeatures/hairstyling/hs_1/NC3_008.jpg";
	    bannerImg[1]="/_assets/002/images/_subfeatures/hairstyling/hs_1/NC_014_2.jpg";
	    bannerImg[2]="/_assets/002/images/_subfeatures/hairstyling/hs_1/NC_013_2.jpg";
	    bannerImg[3]="/_assets/002/images/_subfeatures/hairstyling/hs_1/NC-018.jpg";
	//hs_2
	    bannerImg[4]="/_assets/002/images/_subfeatures/hairstyling/hs_2/NC7-015.jpg";
	    bannerImg[5]="/_assets/002/images/_subfeatures/hairstyling/hs_2/NC7_13_3.jpg";
	    bannerImg[6]="/_assets/002/images/_subfeatures/hairstyling/hs_2/NC7_13_1.jpg";
	    bannerImg[7]="/_assets/002/images/_subfeatures/hairstyling/hs_2/NC7-014.jpg";
	//hs_3
	    bannerImg[8]="/_assets/002/images/_subfeatures/hairstyling/hs_3/NC_005_2.jpg";
	    bannerImg[9]="/_assets/002/images/_subfeatures/hairstyling/hs_3/NC2_006_1.jpg";
	//hs_4
	    bannerImg[10]="/_assets/002/images/_subfeatures/hairstyling/hs_4/NC3_2.jpg";
	    bannerImg[11]="/_assets/002/images/_subfeatures/hairstyling/hs_4/NC_019_1.jpg";
	    bannerImg[12]="/_assets/002/images/_subfeatures/hairstyling/hs_4/NC_031.jpg";
	//hs_5
	    bannerImg[13]="/_assets/002/images/_subfeatures/hairstyling/hs_5/NC7_029_2.jpg";
	    bannerImg[14]="/_assets/002/images/_subfeatures/hairstyling/hs_5/NC7_026.jpg";
	    bannerImg[15]="/_assets/002/images/_subfeatures/hairstyling/hs_5/NC7_032_2.jpg";
	    bannerImg[16]="/_assets/002/images/_subfeatures/hairstyling/hs_5/NC7_030_2.jpg";
	//hs_6
	    bannerImg[17]="/_assets/002/images/_subfeatures/hairstyling/hs_6/DSC4387.jpg";
	    bannerImg[18]="/_assets/002/images/_subfeatures/hairstyling/hs_6/DSC4422.jpg";
	    bannerImg[19]="/_assets/002/images/_subfeatures/hairstyling/hs_6/DSC4531.jpg";
	    bannerImg[20]="/_assets/002/images/_subfeatures/hairstyling/hs_6/Kelsie4572.jpg";
	//hs_7
	    bannerImg[21]="/_assets/002/images/_subfeatures/hairstyling/hs_7/hsA0001.jpg";
	    bannerImg[22]="/_assets/002/images/_subfeatures/hairstyling/hs_7/hsA0002.jpg";
	//hs_8
	    bannerImg[23]="/_assets/002/images/_subfeatures/hairstyling/hs_8/hsB0001.jpg";
	    bannerImg[24]="/_assets/002/images/_subfeatures/hairstyling/hs_8/hsB0002.jpg";
	    bannerImg[25]="/_assets/002/images/_subfeatures/hairstyling/hs_8/hsB0003.jpg";
	//hs_9
	    bannerImg[26]="/_assets/002/images/_subfeatures/hairstyling/hs_9/hsC0001.jpg";
	    bannerImg[27]="/_assets/002/images/_subfeatures/hairstyling/hs_9/hsC0002.jpg";

	/*	//A Couple More...
		<picture file="/_assets/002/images/_album/misc_bridal/bridal_misc_1.jpg"></picture>
		<picture file="/_assets/002/images/_album/misc_bridal/bridal_misc_2.jpg"></picture>
		<picture file="/_assets/002/images/_album/misc_bridal/bridal_misc_3.jpg"></picture>
		<picture file="/_assets/002/images/_album/misc_bridal/C-bride-girl.jpg"></picture>
		<picture file="/_assets/002/images/_album/misc_bridal/G-BridalParty.jpg"></picture> */

var newImage = 0;
var totalImg = bannerImg.length;
var hairstart = 0;
var hairend = 0;
var timeoutId = 0;

function cycleImg() {
  if (newImage == totalImg && hairstart==0 && hairend==0) {
    newImage = 0;
  } else {
    if (hairend != 0 && newImage - 1 == hairend){
  		newImage = hairstart;
    }
  }
  //var filename = bannerImg[newImg].slice(bannerImg[newImg].lastIndexOf("/") + 1);
  if (hairstart != 0 && hairend != 0)
  {
	  if (hairstart >= newImage || hairstart <= newImage)
	  { 
		  document.banner.src=bannerImg[newImage];
		
		  // set the time below for length of image display
		  // i.e., "3*1000" is 3 seconds
		  timeoutId = setTimeout("cycleImg()", 3*1000);
		newImage++;
		}
		else
		{
		newImage++;
		cycleImg();
		}
  } 
  else  
  {
	  document.banner.src=bannerImg[newImage];
	
	  // set the time below for length of image display
	  // i.e., "3*1000" is 3 seconds
	  timeoutId = setTimeout("cycleImg()", 3*1000); 
	
	  newImage++;
  }
}
window.onload=cycleImg;



