// slideshowSettings.js ©2008 SugarHill Works LLC - www.sugarhillworks.com
//
//
//var floorNum = 1; // if this portfolio has a statement image, set statement=true and floorNum=0;
var slideshow = [], fol, ssns=[];//, szFolder;

//
//if (screen.height > 1023) { 
//	szFolder = 'large/';
//} else {
//	szFolder = 'medium/';
//}
//
// --------------------------  DO NOT EDIT ABOVE THIS LINE  --------------------------




// --------------------------------  INSTRUCTIONS  -----------------------------------
// For each of the slideshow panels,              
// follow the pattern of the following lines:
//		
//			//The following line signifies the beginning of a group of images.
//			//Put a one-word name in quotes inside the brackets. Letters only - no punctuation! 
//			slideshow['newproducts'] = [];
//			slideshow['newproducts'][slideshow.length] = {
//				image: "your_filename_here.jpg",
//				thumb: "your_thumbnail_filename",
//				info: "Your caption text goes here."
//			};
// 		// NOTE: YOU CAN LEAVE THE thumbFilenames value blank ("";) if the thumb filename and
// 		   the image filename are IDENTICAL!
//		// NOTE: The info text can contain HTML character codes and tags.
//			To force a line-break ,  type <br />
//			To display " , type &quot;
//			To display $ , type &amp;
//			To display a copyright symbol, type &copy;
// The images will appear in the slideshows in the order listed (regardless of filename).
//
// THE IMAGE FOLDER MUST BE THE SAME NAME AS THE CONTAINER TO WHICH THEY WILL BE APPENDED!!!
// 
// ------------------------------------------------------------------------------------

// ------ VIST US ------ //

// ---------------- BEGINNING OF SLIDESHOW PANEL ------------------------------
// SET THE IMAGE FOLDER ON THE LINE BELOW - should be a subfolder of .../shw_slideshow/images/
// NOTE: Image folder should be named with letters and underscores(_) ONLY!
fol = 'images_ss_hdr';
slideshow[fol] = [];ssns.push(fol);
slideshow[fol].imageFolder = fol;
// Set each image to appear in this panel's slideshow below (minimum 2 images).

slideshow[fol][slideshow[fol].length] = {
	image: "8230.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "4465.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "8235.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "7100.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "4883.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "7000.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "4827.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "7119.jpg"
};


//slideshow[fol][slideshow[fol].length] = {
//	image: ""
//};
//
// ---------------- END OF SLIDESHOW PANEL ------------------------------



// ---------------- BEGINNING OF SLIDESHOW PANEL ------------------------------
// SET THE IMAGE FOLDER ON THE LINE BELOW - should be a subfolder of .../shw_slideshow/images/
// NOTE: Image folder should be named with letters and underscores(_) ONLY!
fol = 'images_ss_rt';
slideshow[fol] = [];ssns.push(fol);
slideshow[fol].imageFolder = fol;
// Set each image to appear in this panel's slideshow below (minimum 2 images).

slideshow[fol][slideshow[fol].length] = {
	image: "4967.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "4956.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "4979.jpg"
};

slideshow[fol][slideshow[fol].length] = {
	image: "4894.jpg"
};

//slideshow[fol][slideshow[fol].length] = {
//	image: "",
//};





//
//
//
//
// -----------------     DO NOT EDIT BELOW THIS LINE    ---------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// **************************************************************************
// ***************                                          *****************
// ***************      SET YOUR IMAGE FILENAMES ABOVE      *****************
// ***************                                          *****************
// **************************************************************************
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// -----------------     DO NOT EDIT BELOW THIS LINE    ---------------------
//
//
//
//
//
//
// DO NOT EDIT THESE varS. CHANGE/ADD IMAGE AND THUMBNAIL FILENAMES IN THE PREVIOUS SECTION
// 



var sPicsFolder = window.location.toString();
for(var i = 0; i < ssns.length; i++) {
	slideshow[ssns[i]].sPicsFolder = sPicsFolder.replace(/([a-z]*\.[a-z]*#)|(index\.html)|#$|\/$/i, '') + "/" + slideshow[ssns[i]].imageFolder + '/';
	ssns[i][0] = i;
}
//window.location = sPicsFolder;
//var thmsFolder = "thumbs"; // path relative to specific portfolio dir
//for (var i = 0; i < slideshow.length; i++) {
//	if (slideshow[i].thumb === "") { 
//		slideshow[i].thumb = slideshow[i].image;
//	}
//}
//


var ss_interval = [];
// -------- SETTINGS -----------

//----- init the slideshows
addEvent(window, 'load', function() { 
	window.setTimeout("multi_ss_init('"+ssns[0]+"')", (1000));
	ss_interval[ssns[0]] = 2000;
});
addEvent(window, 'load', function() { 
	window.setTimeout("multi_ss_init('"+ssns[1]+"')", (2000));
	ss_interval[ssns[1]] = 4000;
});
//addEvent(window, 'load', function() { 
//	window.setTimeout("multi_ss_init('"+ssns[2]+"')", (12000));
//	ss_interval[ssns[2]] = 4000;
//});
//addEvent(window, 'load', function() { 
//	window.setTimeout("multi_ss_init('"+ssns[3]+"')", (16000));
//	ss_interval[ssns[3]] = 4000;
//});
//
// randomize the order
//imageFilenames.sort( randOrd );

// -----------------------------

