/* slideshowSettings.js (c)2008 SugarHill Works LLC - http://www.sugarhillworks.com */
//
//
var slideshow = [];




slideshow[slideshow.length] = {
	zoom_f: "01_img",
	thumb: "img/thumb_01.jpg",
	photog: "Paul Kennedy",
	title: "Living Room, 2004",
	info: "See the full highlight detail we can pull out of your negative, without sacrificing overall image quality. The backlit curtains in this room are full of important information."
};

slideshow[slideshow.length] = {
	zoom_f: "02_img",
	thumb: "img/thumb_02.jpg",
	photog: "Megan Maloy",
	title: "Aquarium",
	info: "We neutralize the color in each scan, so your images really pop, and we'll even custom color match to your preferences. Preserve the fine qualities of film in a versatile digital file."
};


slideshow[slideshow.length] = {
	zoom_f: "03_img",
	thumb: "img/thumb_03.jpg",
	photog: "Jenny Burgos",
	title: "Crime Scene",
	info: "Look at the wide tonal range our scanner can read in your black and white negatives.  This night shot has fine shadow detail even in the thinnest areas of the film, without a bunch of noise."
};


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

var req_item = 1;
function ssPause(req) {
	req_item = req - 1;
	
	var zfr = d.getElementById('zfr');
	zfr.src = 'shw_zoom/ifr.html';
	
	var photog_name = d.getElementById('photog_name');
	photog_name.innerHTML = slideshow[req_item].photog;
	
	var photo_title = d.getElementById('photo_title');
	photo_title.innerHTML = slideshow[req_item].title;
	
	var desc = d.getElementById('desc');
	desc.innerHTML = slideshow[req_item].info;
	
	return req_item;
}

addEvent(window, 'load', function() { ssPause(req_item); });