function faq(question, answer)
{
	this.question = question;
	this.answer = answer;
}


// write HR to space FAQ's
function WriteFAQline()
{
document.write('<table cellspacing="0" cellpadding="1" border="0">');
document.write('<tr>');
document.write('	<td align="center" width="100"><img src="images/1x1-FFFFFF.jpg" width="104" height="1" alt="" border="0"></td>');
document.write('	<td align="center" width="*"><img src="images/1x1-820082.jpg" width="360" height="1" alt="" border="0"></td>');
document.write('	<td align="center" width="100"><img src="images/1x1-FFFFFF.jpg" width="10" height="1" alt="" border="0"></td>');
document.write('</tr>');
document.write('</table>');
}

function WriteFAQ() 
{
	for (var i=1; i < Faq.length; i++)
	{
	document.write('<p><font class="q-question">' +  Faq[i].question + '</font><br><font class="q-answer">' + Faq[i].answer + '</font></p>');
	WriteFAQline()
	}
}


var Faq = new Array();
Faq[1] = new faq( 'How many budgies does the Budgieman own?','The Budgieman has about 15-20 budgies at any one time. Around half of these are trained. The other young ones watch and learn from the Budgieman and the other budgies. He also looks after rescued and disabled budgies.');
Faq[2] = new faq( 'How long does it take to teach a budgie tricks?','First of all you have to learn to love and care for your budgies so that they learn and love you. With good training they can master all sorts of tricks within 12 to 18 months. Young budgies, like young humans play about too much and cant be easily trained.  Budgies can start to learn from about 3 years old.');
Faq[3] = new faq( 'How do you teach them tricks?','All the budgies are carefully trained by the Budgieman. How he teaches them is a special secret. Watch the website, as he may give away some secrets in the future.');
Faq[4] = new faq( 'Where and when can I see him perform?','The Budgieman is oftem performing on the Southbank in front of the Tate Modern in London.. Weather depending, the performances are most weekends between June and October.');
Faq[5] = new faq( 'How many times a day do they perform?','On a good day they may perform between 10 and 15 times. The budgies get plenty of rest inbetween shows.');
Faq[6] = new faq( 'Is the budgieman available for private hire?','The budgieman is available for private performances such as childrens and adults birthday parties, corporate events and shop openings. The Budgieman can personalise his act and songs as required. The Budgieman and his budgies can only perform in non-smoking environments.');



