


/*
	firdom() version 1.1 (24.11.2003)
	written by Chris Heilmann (http://www.onlinetools.org)
*/
function firdom(){
	if(document.getElementsByTagName && document.createElement){
		for (var l=1;l<=6;l++){
			var h1s=document.getElementsByTagName('h'+l);
			scanandreplace(h1s,'h'+l);
		}
	}
}
function scanandreplace(h1s,tag){
	for(var i=0;i<h1s.length;i++){
		for(var f=0;f<replaceImages.length;f++){
			var chunks=replaceImages[f].split('|');
			var thish1=document.getElementsByTagName(tag)[i];
			if(thish1.firstChild.nodeValue==chunks[0]){
				var newImg=document.createElement('img');			
				newImg.setAttribute('alt',chunks[0])
				newImg.setAttribute('src',chunks[1])
				newImg.setAttribute('border',"0")
				// or newImg.src=chunks[1];
				thish1.replaceChild(newImg,thish1.firstChild)
				break;
			}
		}
	}
}
window.onload=firdom;
replaceImages = new Array(
		'Welcome to Toucan Books|images/titles/welcometotoucanbooks.gif',
		'20th Anniversary|images/h3/20thanniversary.gif',
		
		'About Us|images/titles/aboutus.gif',
		'Robert Sackville West, Director|images/h3/robertsackvillewest.gif',
		'Ellen Dupont, Managing Director|images/h3/ellendupont.gif',
		'Bradbury Williams, Design Team|images/h3/bradburywilliams.gif',
		
		'Journeys of a Lifetime|images/h3/journeys.gif',
		
		'The Complete Illustrated Encyclopedia of Saints|../images/h3/saints.gif',
		'The Ultimate Illustrated History of World War I|../images/h3/ww1.gif',
		'Facts at Your Fingertips|../images/h3/facts.gif',
		'1000 Wonders of Nature|../images/h3/1000.gif',
		'Vanished Civilizations|../images/h3/vanished.gif',
		'Can They Do That?|../images/h3/canthey.gif',
		
		'Mini-series for the BBC|../images/h3/mini.gif',
		'Continuity series for Readers Digest|../images/h3/continuity.gif',
		'Series Completed for Readers Digest|../images/h3/series.gif',
		
		'Physics|../images/h3/physics.gif',
		'Biology|../images/h3/biology.gif',
		'The Periodic Table|../images/h3/periodictable.gif',
		'Ancient Greece & Ancient Rome|../images/h3/greecerome.gif',
		'Quiz Quest 1 & Quiz Quest 2|../images/h3/quiz.gif',
		'Sudoku for Kids & More Sudoku for Kids|../images/h3/sudoku.gif',
		'Readers Digest Book of Amazing Facts|../images/h3/amazing.gif',
		'The Kingfisher Book of Religions|../images/h3/kingfisher.gif',
		'People Around the World|../images/h3/people.gif',
		'DK Rock & Mineral|../images/h3/dkrock.gif',

		'Essentially English|../images/h3/essentially.gif',
		'|../images/h3/.gif',
		'|../images/h3/.gif',
		
		'Tailor Made Books|../images/titles/tailormadebooks.gif',
		
		'Childrens Books|../images/h3/childrensbooks.gif',
		'Reference books|../images/h3/referencebooks.gif',
		'Series & Sets|../images/h3/seriesandsets.gif',
		
		'Children\'s Books|../images/titles/childrensbooks.gif',
		
		'Reference Books|../images/titles/referencebooks.gif',
		'Series and Sets|../images/titles/seriesandsets.gif',
		
		
		
		'Rights Available|../images/titles/rightsavailable.gif',
		
		'Assassinations|../images/h3/assassinations.gif',
		
		'Gift Books|../images/h3/giftbooks.gif',
		'Household Hints|../images/h3/householdhints.gif',
		
		'A-Horse-of-Course|../images/h3/A-Horse-of-Course.gif',
		'Cat-A-Logue|../images/h3/cat.gif',
		'Dog-o-Pedia|../images/h3/dog.gif',
		
		'Indispensable facts|../images/h3/indespensablefacts.gif',
		'Bad Behaviour|../images/h3/badbehaviour.gif',
		'An Architect In Italy|../images/h3/anarhitectinitaly.gif',
		
		'Practical Books|../images/titles/practicalbooks.gif',
		'Perennials|../images/h3/perennials.gif',
		'Your Vegetable Garden|../images/h3/yourvegetablegarden.gif',
		'101 Easy to Grow Orchids|../images/h3/101easytogroworchids.gif',
		'The Decorated Doll\'s House|../images/h3/thedecorateddollshouse.gif',
		'Young at Heart|../images/h3/youngatheart.gif',
		
		'Zany Miscellany|../images/h3/zany.gif',
		'Picture That! The Trail West|../images/h3/thetrailwest.gif',
		'Picture That! Knights and Castles|../images/h3/knightsandcastles.gif',
		
		
		'Practical books|../images/h3/practicalbooks.gif',
		
		'Gift-Books|../images/titles/giftbooks.gif',
		
		
		'Contact Us|images/titles/contactus.gif'
	);
