/* 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 = "FASHION";  

// --------------------------------  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 I -------------------------------------
		
		slideshow[slideshow.length] = {
			image: "f1_001_eb_lana1.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "f1_002_eb_lana2.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "f1_003_eb_lana3.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "f1_004_eb_lana4.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "f1_005_eb_lana5.jpg",
			title: ""
		};
		
		slideshow[slideshow.length] = {
			image: "f1_006_eb_lana6.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;
//	}
//}

