/* slideshowSettings.js (c)2008 SugarHill Works LLC - http://www.sugarhillworks.com */
/* v3-20081120_AR_S [auto-run, no user controls, no thumbs, single init] */
//
//
var slideshow = [];

//// ********************************************************************************************************** //
//// *********************************      DO NOT EDIT BELOW THIS LINE       ********************************* //
//// ********************************************************************************************************** //


// SET THE NAME OF THE FOLDER THAT CONTAINS THE IMAGES FOR THIS SLIDESHOW
var imageFolder, sPicsFolder, ssn;
// SET THE NAME OF THIS PORTFOLIO ON THE LINE BELOW.
var portfolioTitle = "PORTRAITS II";  

// --------------------------------  INSTRUCTIONS  -----------------------------------
// For each of the slideshow items,              
// follow the pattern of the following lines: 
// 
//			//
//			//slideshow[slideshow.length] = {				<--this line is the same for each item
//			//	image: "folder_conaining_zoomify_img",		<--this is the zoomify image folder	
//			//	thumb: "thumbnail.filename.jpg",			<--this is the thumbnail filename
//			//	title: "Title Text Appears Beneath Image",	<--this is the title that appears with the image
//			//  PP_item_name: "Greeting Cards",  			<--this is the name that appears on the PayPal Shopping Cart pages
//			//  PP_item_number: "12 count",					<--this appears as "Item # 12 count" on the PayPal Cart pages
//			// 	PP_amount: "19.95"							<--this is the price. numbers/decimal only. no dollar sign. no trailing comma.
//			//};											<--this line is the same for each item
//			//
//
// The images will appear in the slideshows in the order listed (regardless of filename).
//
//
// 
// ------------------------------------------------------------------------------------

// ---------------- 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!
// Set each item to appear in this panel's slideshow below (minimum 2 images).
// To add a new item, copy and paste the following lines. Then remove the '//' from the beginning of each line
// and fill in the values as above in the instructions.
			//slideshow[slideshow.length] = {				
			//	image: "",
			//	title: ""
			//};







function load_slideshow(n) {
	if (n == 1) {
		slideshow = [];
		imageFolder = 'images';
		
		
	//------------------------------------- BEGIN  PORTRAITS II -------------------------------------
		
		slideshow[slideshow.length] = {
			image: "p2_001_eb_mike1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_002_eb_wendy1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_003_eb_aruha2.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_004_eb_liz1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_005_eb_sophie1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_006_eb_chris1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_007_eb_nate1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_008_eb_linds2.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_009_eb_liz2.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_010_eb_mira1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_011_eb_sarah2.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "p2_012_eb_wendy2.jpg",
			title: ""
		};
		
//		slideshow[slideshow.length] = {
//			image: "",
//			title: ""
//		};
		
	//-------------------------------------  END  PORTRAITS I -------------------------------------
	
	
		sPicsFolder = window.location.toString();
		slideshow.sPicsFolder = sPicsFolder.replace(/([a-z]*\.[a-z]*#)|(index\.html)|#$/i, '') + imageFolder + '/';
		ssn = slideshow.length;
	}


}




//
//
//
// -----------------  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
// 
load_slideshow(1);

// GLOBAL GALLERY VARS
//var thmsPerPg = 9;
//if (thmsPerPg > ssn) { thmsPerPg = ssn; }
//var thmsFolder = sPicsFolder.replace(/([a-z]*\.[a-z]*#)|(index\.html)|#$/i, '') + '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;
//	}
//}

