var captions = {
	caption1: "Still frame from <em>The Powder &amp; the Glory</em>, Boyd Estus, Director of Photography",
	caption2: "Photo by Labid Aziz",
	caption3: "Photo by Ann Carol Grossman",
	caption4: "Photo by Liane Brandon",
	caption5: "Courtesy Elizabeth Arden Archives",
	caption6: "Elizabeth Arden ad, circa 1920",
	caption7: "Courtesy Helena Rubinstein Foundation",
	caption8: "Helena Rubinstein ad, 1915",
	caption9: "Photo by Paul Lang",
	caption10: "If you are having problems watching this video, hit the pause button (lower left of video) and wait for the entire clip to load (watch the progress bar under the video), then hit the play button."
}


function gallery() {
	jQuery.each($("div.gallery a"), function() {
	     $(this).click(function () { 
			var img = new Image();
			img.src = "images/"+$(this).attr("load");
			
			$("#largePhoto").attr({ 
				src: "images/"+$(this).attr("load")
			});
			
			//alert($(this).attr("load"));
			
			if ($(this).attr("load").match("frames")) {
				$("#largePhotoCaption").html(captions.caption1);
			} else if ($(this).attr("load").match("London-crew.jpg")) {
				$("#largePhotoCaption").html(captions.caption3);
			} else if ($(this).attr("load").match("with-Lindy-in-London.jpg")) {
				$("#largePhotoCaption").html(captions.caption9);
			} else if ($(this).attr("load").match("old-Vogue.jpg")) {
				$("#largePhotoCaption").html(captions.caption6);
			} else if ($(this).attr("load").match("E.F.-Fuley-Portrait.jpg") || $(this).attr("load").match("EA-by-Harlip-2.jpg") || $(this).attr("load").match("Port.-EA-in-shawl.jpg")) {
				$("#largePhotoCaption").html(captions.caption5);
			} else if ($(this).attr("load").match("Rubinstein-15.jpg") || $(this).attr("load").match("Helena-Rubinstein-Hurbs.jpg") || $(this).attr("load").match("Helena-Rubinstein-in-Lab.jpg")) {
				$("#largePhotoCaption").html(captions.caption7);
			} else if ($(this).attr("load").match("greatest-Eur-beauty-expert.jpg")) {
				$("#largePhotoCaption").html(captions.caption8);
			} else if ($(this).attr("load").match("spacer.jpg")) {
				$("#largePhotoCaption").html(captions.caption10);
			} else {
				$("#largePhotoCaption").html(captions.caption4);
			}
		});
	});
	bobj=document.getElementById('videoframe');
	if(bobj){ 
		bobj.style.display='none'; 
	}
}

$(document).ready(function(){
	gallery();
});
