/*
----------------------------------------------------------------------------------------
    image_gallery_all.js

    LB Society web site
    Set up image gallery images for display

    VERSION 1.02	26/11/07
    
    (c) 2007 Thomas Daly
----------------------------------------------------------------------------------------
*/


add_onload(init_images);


function init_images()
{
	var file_path = "images/gallery/";
	
	// 25 images in gallery
	var gallery_filenames = new Array(
		"lb_and_cousin.jpg",	// 1907			
		"lb_and_tip.jpg",		// 1912
		"lb_at_oxford.jpg",		// 1925
		"lb_in_1927.jpg",		// 1927
		"lb_and_ravel.jpg",		// 1928		
		"lb_in_france.jpg",		// 1930
		"nb_and_choir.jpg",		// 1933
		"nb_at_keyboard.jpg",		
		"lb_in_1940.jpg",		// 1940
		"lb_in_1943.jpg",		// 1943
		"trafalgar_square.jpg",	// 1950
		"lb_and_britten.jpg",	// 1961
		"lb_and_yehudi.jpg",	
		"lb_and_yehudi_2.jpg",		
		"lb_at_piano.jpg",		
		"lb_and_poulenc.jpg",
		"lb_and_freda_at_window.jpg",		
		"lb_in_1970.jpg",		// 1970
		"8_warwick_avenue.jpg",
		"lb_and_family.jpg",	// 1972
		"lb_and_freda_at_home.jpg",			
		"lb_freda_michael.jpg",
		"lb_at_desk.jpg",		// 1981
		"ballet_of_judgement_of_paris.jpg",
		"dinner_engagement.jpg"
		);
	
	var caption_short = new Array(
		"LB (left) with cousin Lison in Menton",								  
		"LB with Tip at Boars Hill, Oxford",
		"As an Oxford student",		
		"LB in 1927",	
		"LB with Maurice Ravel at Oxford",	
		"LB in France, 1930s",	
		"Nadia Boulanger (centre)",	
		"Nadia Boulanger at home in Paris",	
		"LB in 1940",
		"LB in 1943",		
		"LB with son Michael",
		"With Benjamin Britten",		
		"LB with Yehudi Menuhin",
		"LB with Yehudi Menuhin",
		"LB at piano",
		"LB with Francis Poulenc",	
		"LB with his wife Freda in Norfolk",	
		"LB in 1970",		
		"The Berkeleys\' house, 8 Warwick Avenue, Little Venice, London",		
		"LB with family in 1972", 
		"LB and Freda at home",
		"LB and Freda with Michael",		
		"At work at home",
		"LB ballet, The Judgement of Paris",
		"LB opera, A Dinner Engagement"
		);
	
	var caption_long = new Array(
		"LB with cousin Lison (daughter of Annie Harris and Arthur, Baron d\'Eppinghoven) at Menton, 2 March 1907",
		"LB with Tip at Boars Hill, Oxford, 1912",
		"As an Oxford student in 1925. Photo by Elliott Fry",
		"LB in 1927",
		"LB with Maurice Ravel in London, 1928.  Photo by Charles Harding by kind permission of The Pierpont Morgan Library, New York",
		"LB in France, 1930s",
		"From left to right: Maria Modrakowska, Nadia Boulanger and Marie-Blanche de Polignac in 1933",
		"Nadia Boulanger (LB's teacher) at home in Paris",
		"LB in 1940.  Photo \&copy; Germaine Kanova",
		"LB in October 1943 at the BBC (photo \&copy; BBC)",
		"LB with eldest son Michael in Trafalgar Square in 1950",
		"LB and Benjamin Britten on the beach at Blakeney Point, Norfolk, 1961.  Photo by Freda",
		"LB with Yehudi Menuhin, rehearsing the Violin Concerto. Photo by David Farrell",
		"LB with Yehudi Menuhin. rehearsing the Violin Concerto. Photo by David Farrell",
		"LB at piano. Photo by G. Macdomnic",
		"LB with Francis Poulenc",
		"LB with wife Freda at Coldblow Cottage, Marston, Norfolk in 1955.  Photo by Derek Hill",
		"LB in 1970. Photo by Colin Busby",
		"LB\'s home - 8 \& 10 Warwick Avenue, London.  Pen \& ink drawing by Stephen Pimbley",
		"In the garden of 8 Warwick Avenue around 1972.  Seated: LB and wife Freda.  Standing from right to left: sons Michael, Julian and Nicholas",
		"LB with wife Freda at home - 8 Warwick Avenue, London, around 1974.  Photo by Clive Barda",
		"LB with wife Freda and eldest son Michael",
		"LB at work at home, 8 Warwick Avenue, London W2, in 1981.  Photo by Malcolm Crowthers",
		"Margot Fonteyn, Robert Helpman and William Chappell in The Ballet of The Judgement of Paris (music by LB , choreography by Frederick Ashton)",
		"Opera 'A Dinner Engagement' (music by LB)"
		);
	
	var img_tags=document.getElementsByTagName("img");
	for (var count=0; count<img_tags.length; count++)
	{
		// Check to see if the image is surrounded by a link tag. If so, insert the link URL
		if (img_tags[count].parentNode.tagName == "A")
			img_tags[count].parentNode.href = file_path+gallery_filenames[count];

		// Insert the data from the array to each image
		img_tags[count].src = file_path+"thumbnails/"+gallery_filenames[count];
		img_tags[count].alt = caption_short[count];
		img_tags[count].style.borderStyle = "solid";
		img_tags[count].style.borderWidth = "6px";
		img_tags[count].style.borderColor = "#ffffff";
	}
	
	var caption_tags=document.getElementsByTagName("p");
	var caption_count=0;
	for (var count=0; count<caption_tags.length; count++)
	{
		if (caption_tags[count].className == "caption")
		{
			caption_tags[count].innerHTML = caption_short[caption_count];
			caption_count++;
		}
	}
}

function gallery_rollover()
{
	// this.style.backgroundImage = "url(\"images/selected_tab.gif\")";
}

function gallery_rollout()
{
	// this.style.backgroundImage = "url(\"images/unselected_tab.gif\")";
}

