function checkInfo(topic) {
	if (topic == 'about') {
content='Alison Griffiths is an award winning photographer and journalist. Specialising in editorial, travel and hospitality photography, her work is featured regularly in publications such as Home Beautiful, Harpers Bazaar, Gourmet Traveller, The Age, Herald Sun Travel, RM Williams Outback Magazine and Beautiful Accommodation.<br><br>Her works flows from a childhood passion for visual beauty and her current inspiration is derived from her passion for the Australian culture - its characters and their stories. She often travels across the expanse of the Australian country side on assignment.';
createInfoDiv(topic, content);
	} else if (topic == 'pricing') {
content='Alison Griffiths ensures the process is professional and speedy. Each shoot is tailored to suit the client\'s requirements. Photography is charged at an hourly rate with a time frame based on your requirements. We also offer an exceptional stylist to help get the best from your photo shoot.<br><br><b>Weather</b>&nbsp;&nbsp;We are happy to reschedule shoots with 48 hours notice if the location is within Victoria.<br><br><b>Deposits</b>&nbsp;&nbsp;A 50% deposit secures the date in our diary. This is to be paid a minimum of 14 days prior to the shoot.<br><br><b>Image turn-around times</b>&nbsp;&nbsp;Images are edited and proof sheets made available electronically approximately 7 working days from date of the photo shoot, unless alternatively arranged. Selected images are then professionally digitally enhanced and sent to you on disc.<br><br><br>Please <a href="mailto:alison@alisongriffiths.com">email</a> a short brief or call 0411 025 070 for an obligation-free quote.';

createInfoDiv(topic, content);
	} else if (topic == 'contact') {
content='<br><b>Alison Griffiths</b><br><br>Phone: 0411 025 070<br><br>email: <a href="mailto:alison@alisongriffiths.com">alison@alisongriffiths.com</a>';

createInfoDiv(topic, content);
	}
	return;
}



function createInfoDiv(heading, content) {

	infoDiv = document.createElement('div');
	infoDiv.id = 'info';

// bg gradient

	gradDiv = document.createElement('div');
	gradDiv.id = 'grad_info';

// bg

	bgDiv = document.createElement('div');
	bgDiv.id = 'info_bg';

// kill button
        killDiv = document.createElement('div');
	killDiv.id = 'kill_info';
	killImg = document.createElement('img');
	killImg.src = 'images/X.png';
	killImg.width = '10';
	killImg.height = '10';
	killImg.id = 'kill_info_button';
        killImg.border = '0px';
        link = document.createElement('a');
        link.href = 'javascript:killInfoDiv()';
	link.appendChild(killImg);
	killDiv.appendChild(link);

// content
	contentDiv = document.createElement('div');
	contentDiv.id = 'show_info';
	str='<img src="images/ali_face.jpg" align="left">'+content;
	contentDiv.innerHTML=str;


	bgDiv.appendChild(killDiv);
	infoDiv.appendChild(gradDiv);
	infoDiv.appendChild(bgDiv);
	infoDiv.appendChild(contentDiv);
	destroyInfoDiv();
	document.body.appendChild(infoDiv);

	return;
}



