// Give a random quote
function js_quote()
{
	var rand_no = Math.round(4*Math.random())
	document.write("&quot;");
	switch (rand_no)
	{
		case 1:	
			document.write("Your fantastic band added to our whole experience...");
			break;
		case 2:
			document.write("Once again, the Red Hot Chillies were an absolute WOW!");
			break;
		case 3:
			document.write("Great tunes: volume spot on, and good feedback (yet again) from our guests...");
			break;
		case 4:
		default:
			document.write("Once again, the Red Hot Chillies were an absolute WOW!");
			break;
	}
	document.write("&quot;<br/>");
}


function displayMENU()
{
	url=location.href;
	current_page=url.substring(url.lastIndexOf("/")+1,url.length-5);

	index_selected="";
	music_selected="";
	band_selected="";
	bios_selected="";
	venue_selected="";
	contact_selected="";
	test_selected="";
	faqs_selected="";
	switch (current_page) {
		case "music":
			music_selected=' style="color:#FFF;" ';
			break;
		case "venue":
			venue_selected=' style="color:#FFF;" ';
			break;
		case "faqs":
			faqs_selected=' style="color:#FFF;" ';
			break;
		case "testimonial":
			test_selected=' style="color:#FFF;" ';
			break;
		case "contact":
			contact_selected=' style="color:#FFF;" ';
			break;
		case "index":
			index_selected=' style="color:#FFF;" ';
			break;
		case "red-hot-chillies-jazz-band":
			band_selected=' style="color:#FFF;" ';
			break;
		case "live-jazz-band":
			bios_selected=' style="color:#FFF;" ';
			break;
		default:
			break;
	}

	document.write('<ul>');
	document.write('<li><a href="index.html"'+index_selected+'>Home</a></li>');
	document.write('<li><a href="music.html"'+music_selected+'>Music</a></li>');
	document.write('<li><a href="red-hot-chillies-jazz-band.html"'+band_selected+'>The Band</a></li>');
	document.write('<li><a href="live-jazz-band.html"'+bios_selected+'>Biographies</a></li>');
	document.write('<li><a href="venue.html"'+venue_selected+'>Venues</a></li>');
	document.write('<li><a href="faqs.html"'+faqs_selected+'>FAQs</a></li>');
	document.write('<li><a href="testimonial.html"'+test_selected+'>Testimonials</a></li>');
	document.write('<li><a href="contact.html"'+contact_selected+'>Contact&nbsp;Us</a></li>');
	document.write('</ul>');


	document.write('<p style="text-align:center;margin-left:10px;"><br/>');
	document.write('<a href="http://www.redhotchillies.co.uk/red-hot-chillies-leaflet.pdf" target="_blank">');
	document.write('<img src="/images/red-hot-chillies-brochure.jpg" width="144" height="226" alt="Red Hot Chillies Jazz Band brochure" style="border:none;"/><br/>');
	document.write('View our brochure!');
	document.write('</a>');
	document.write('</p>');

}


function displayTOPMENU()
{
	url=location.href;
	current_page=url.substring(url.lastIndexOf("/")+1,url.length-5);

	wedding_selected="";
	birthday_selected="";
	office_selected="";
	christmas_selected="";
	switch (current_page) {
		case "wedding-party-jazz-music":
			wedding_selected=' style="color:#FFF;" ';
			break;
		case "birthday-party-jazz-music":
			birthday_selected=' style="color:#FFF;" ';
			break;
		case "office-party-jazz-music":
			office_selected=' style="color:#FFF;" ';
			break;
		case "christmas-party-jazz-music":
			christmas_selected=' style="color:#FFF;" ';
			break;

		default:
			break;
	}

	document.write('<a href="wedding-party-jazz-music.html"'+wedding_selected+'>Wedding Reception Music</a>&nbsp;|&nbsp;');
	document.write('<a href="birthday-party-jazz-music.html"'+birthday_selected+'>Birthday Party Music</a>&nbsp;|&nbsp;');
	document.write('<a href="office-party-jazz-music.html"'+office_selected+'>Office Party Music</a>&nbsp;|&nbsp;');
	document.write('<a href="christmas-party-jazz-music.html"'+christmas_selected+'>Christmas Party Music</a>');
}
