// Author(s)   : Colin Stott.
// Copyright   : Congo Systems© 2003
// ----------------------------------------------------------------------


		// Disable the window status bar change on mouseover.

//		document.onmouseover = function (e)
//		{   
//		if (!e) e = window.event;   
//		var el = e.target ? e.target : e.srcElement;   
//		while ( el != null && el.tagName != "A" ) el = el.parentNode;   
//		if ( el == null ) return;   
//		if ( e.preventDefault ) e.preventDefault();   
//		else e.returnValue = true;
//		};


		function setmenu(victim)
		{
			parent.document.getElementById('intro').className = 	"menutext1_off";
			parent.document.getElementById('history').className = 	"menutext1_off";
			parent.document.getElementById('images').className = 	"menutext1_off";
			parent.document.getElementById('bios').className = 		"menutext1_off";
			parent.document.getElementById('music').className = 	"menutext1_off";
			parent.document.getElementById('links').className = 	"menutext1_off";
			parent.document.getElementById('gigs').className = 		"menutext1_off";
			parent.document.getElementById('guest').className = 	"menutext1_off";
			parent.document.getElementById('contact').className = 	"menutext1_off";

			if(victim != "nil")
			parent.document.getElementById(victim).className = 		"menutext1_on";

//			if(victim != "intro")
//			window.status="Currently viewing the "+victim+" page.";
		}
		
		
		function showview2(victim)
		{
			parent.document.getElementById('picviewer').style.visibility = "visible";
			parent.document.getElementById('picgizzards').style.visibility = "visible";
			parent.document.getElementById('picgizzards').src = victim;
			//--- Then do a preload of Zoomed Image while they're viewing...
			var v3 = victim;
			var v4 = new RegExp('_v','gi');
			var v5 = v3.replace(v4, '_z');
			parent.document.getElementById('picguts').src = v5;
		}


		function showview(victim)
		{
			parent.document.getElementById('picviewer').style.visibility 	= "visible";
			parent.document.getElementById('picgizzards').style.visibility 	= "visible";
			parent.document.getElementById('picgizzards').src 				= "images/"+victim+"_v.jpg";
			//--- Then do a preload of the Zoomed Image while they're viewing...
			parent.document.getElementById('picguts').src 					= "images/"+victim+"_z.jpg";
		}

		
		function closeview()
		{
			parent.document.getElementById('picviewer').style.visibility 	= "hidden";
			parent.document.getElementById('picgizzards').style.visibility 	= "hidden";
			parent.document.getElementById('picgizzards').src 				= "images/trans.gif";
			parent.document.getElementById('picguts').src 					= "images/trans.gif";
		}


		function showzoom()
		{
			parent.document.getElementById('piczoomer').style.visibility 	= "visible";
			parent.document.getElementById('picguts').style.visibility 		= "visible";
			parent.document.getElementById('picviewer').style.visibility 	= "hidden";
			parent.document.getElementById('picgizzards').style.visibility 	= "hidden";
			parent.document.getElementById('picgizzards').src 				= "images/trans.gif";
		}
		
		
		function closezoom()
		{
			parent.document.getElementById('piczoomer').style.visibility 	= "hidden";
			parent.document.getElementById('picguts').style.visibility 		= "hidden";
			parent.document.getElementById('picguts').src 					= "images/trans.gif";
		}

		
		function checkintro()
		{
			if((parent.document.getElementById('intro').className) == "menutext1_on")
			{
				parent.document.getElementById('mainiframe').src = "page_intro.htm";
			}		
			else if((parent.document.getElementById('history').className) == "menutext1_on")
			{
				parent.document.getElementById('mainiframe').src = "page_history.htm";
			}		

		}		
		
		
		
		function play(victim)
		{
			var url = "http://storage.congosystems.com/mrbluez/flash/";
			
			var speed = parent.document.connection.speed.value;
			if(speed == 'Modem') 		speed = '0056';
			if(speed == 'Broadband') 	speed = '0128';

			if(speed == '0000')
			{
			parent.document.getElementById('player').innerHTML = '<object \
		classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\
	 	codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"\
	  	width="160" height="18"><param name="movie" value="flash/player_nospeed.swf">\
        <param name="quality" value="high"><param name="bgcolor" value="#777777">\
		<embed src="flash/player_nospeed.swf" quality="high"\
		pluginspage="http://www.macromedia.com/go/getflashplayer" bgcolor="#777777"\
		type="application/x-shockwave-flash" width="160" height="18"></embed></object>'
			}
			else
			{			
			parent.document.getElementById('player').innerHTML = '<object \
		classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" bgcolor="#AAAAAA"\
	 	codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"\
	  	width="160" height="18"><param name="movie" value="flash/song_'+victim+'_'+speed+'.swf">\
        <param name="quality" value="high"><param name="bgcolor" value="#777777">\
		<embed src="flash/song_'+victim+'_'+speed+'.swf" quality="high"\
		pluginspage="http://www.macromedia.com/go/getflashplayer" bgcolor="#777777"\
		type="application/x-shockwave-flash" width="160" height="18"></embed></object>'
			}		
		
		}
		
		
		function detail(victim,state)
		{
			if(state == 'Show Details')
			{		
				var state = 'open';
				document.getElementById(victim+"D").innerHTML = "&nbsp;Hide Details";
			}
			else
			{
				var state = 'shut';
				document.getElementById(victim+"D").innerHTML = "Show Details";
			}
			
			document.getElementById(victim).innerHTML = eval("detail_"+state+"_"+victim);
		}


		function read(victim,state)
		{
			if(state == '...Read More')
			{		
				var state = 'more';
				document.getElementById(victim).innerHTML 			= eval(state+"_"+victim);
				document.getElementById("link_"+victim).innerHTML 	= 'Reduce Information';
			}
			else
			{
				var state = 'less';
				document.getElementById(victim).innerHTML 			= eval(state+"_"+victim);
				document.getElementById("link_"+victim).innerHTML 	= '...Read More';
				location.hash = 'a_'+victim;
			}
			
		}
		
		
		function showimages(victim,state)
		{
			if(state == 'Show Images')
			{		
				document.getElementById("S"+victim+"D").innerHTML 	= "&nbsp;Hide Images";
			
				var imagenums	= 'imgnums'+victim;
				var imagelist 	= "";
			
				for(i=1; i<eval(imagenums)+1; i++)
				{
					var imagelist = imagelist + "<img onclick=\"showview('img3"+victim+"_"+i+"')\"\
					style='cursor: hand; border: solid 1px #667788' src='images/img3"+victim+"_"+i+"_t.jpg'> ";
				}
		
				var imagelist = imagelist + "<br><hr><br>";
		
				document.getElementById("imagediv"+victim).style.display	= "block";
				document.getElementById('imagediv'+victim).innerHTML 		= imagelist;

			}
			else
			{
				document.getElementById("imagediv"+victim).innerHTML 		= "&nbsp;";
				document.getElementById("imagediv"+victim).style.display	= "none";
				document.getElementById("S"+victim+"D").innerHTML 			= "Show Images";
			}


		}


// --- Populater ------------------------------------------------------------------------		

		
	function populate(victim)
	{

// ---

// --- Music --- 

		if(victim == 'music')
		{

		var table_first 	= 1;
		var table_last 		= 3;
			
			for(t=table_first; t<table_last+1; t++)
			{
				var speed = parent.document.connection.speed.value;
				if(speed == '0256') speed = '0128';
				if(speed == '1500') speed = '0512';

				var song_first 	= '10'+t+'01';
				var song_last 	= '10'+t+'15';
			
				for(s=song_first; s<song_last; s++)
				{
					var count = String(s);
					var count = count.substring(1);

					if(typeof window['detail_shut_'+count+'R'] != "undefined")
					{
						document.getElementById(count+'R').innerHTML 	= eval('detail_shut_'+count+'R');

						document.getElementById(count+'L').innerHTML 	= "\
						<a onclick=\"javascript:void(0); play('"+count+"')\" \
							title='Play Audio' style=\"cursor: hand\" class=\"mp3link\">Listen</a> - \
						<a onclick=\"javascript:void(0); detail('"+count+"R',this.innerHTML)\" \
							style=\"cursor: hand\" class=\"mp3link\" id ='"+count+"RD'>Show Details</a>";
					}
				}
			}

			document.getElementById('review1').innerHTML 	= less_review1;
			document.getElementById('radio1').innerHTML 	= "<br>\
				<a onclick=\"javascript:void(0); play('6601')\" \
				title='Play Audio' style=\"cursor: hand\" class=\"mp3link\">Listen</a> " + radio1;

		}
		

// --- Gigs --- 

		if(victim == 'gigs')
		{

			var giginfo = "\
			<table width='470' border='0' cellspacing='0' cellpadding='0' height='20'>\
			<tr valign='TOP'>\
				<td class='pagetext2' width='40' align='CENTER' height='20'>Day</td>\
				<td class='pagetext2' width='70' align='CENTER' height='20'>Date</td>\
				<td class='pagetext2' width='40' align='CENTER' height='20'>Time</td>\
			    <td class='pagetext3' width='175' align='CENTER' height='20'>Venue</td>\
			    <td class='pagetext3' width='145' align='CENTER' height='20'>LineUp</td>\
			</tr>";
			
			for(i=1; i<31; i++)
			{

				if(eval('gig'+i+'day') != "0")
				{
				var giginfo = giginfo +"\
				<tr class='pagetext1' valign='TOP'>\
				    <td width='40' align='CENTER' height='20'>"+eval('gig'+i+'day')+"</td>\
				    <td width='70' align='CENTER' height='20'>"+eval('gig'+i+'date')+"</td>\
			    	<td width='40' align='CENTER' height='20'>"+eval('gig'+i+'time')+"</td>\
		    		<td width='175' align='CENTER' height='20'>"+eval('gig'+i+'venue')+"</td>\
		    		<td width='145' align='CENTER' height='20'>"+eval('gig'+i+'lineup')+"</td>\
				</tr>";

				document.getElementById(eval('gig'+i+'map')).style.display = 'inline';

				}
			}
			
			var giginfo = giginfo +"</table>";
			
			document.getElementById('gigtable').innerHTML = giginfo;

		}

			
// --- Images --- 

		if(victim == 'images')
		{

		var table_first 	= 1;
		var table_last 	= 20;
			
			for(t=table_first; t<table_last+1; t++)
			{

				if(typeof window['imgtd'+t+'R'] != "undefined")
				{
					document.getElementById('imgtd'+t+'L').innerHTML 	= "\
						<a onclick=\"javascript:void(0); showimages('"+t+"',this.innerHTML)\" \
							style=\"cursor: hand\" class='imagelink' id='S"+t+"D'>Show Images</a>";
					
					document.getElementById('imgtd'+t+'R').innerHTML 	= eval('imgtd'+t+'R');
				}
			}
		}
		

// --- Images --- 

		if(victim == 'bios')
		{
			document.getElementById('chris').innerHTML 	= less_chris;
			document.getElementById('mark').innerHTML 	= less_mark;
			document.getElementById('peter').innerHTML 	= less_peter;
			document.getElementById('matt').innerHTML 	= less_matt;
			document.getElementById('james').innerHTML 	= less_james;
			document.getElementById('silas').innerHTML 	= less_silas;
		}

// ---
		
	}

// --------------------------------------------------------------------------------------		



		
		
// --- DATA -----------------------------------------------------------------------------


// --- Gig Information --- 

// Placed in file data1.js


// --- Image Information --- 


		var imgtd8R		= ": 06-JUN-04 ~ St Andrews Hotel (Photos by Colin M Stott)";
		var imgnums8	= 22;
		var imgtd7R		= ": 22-MAY-04 ~ Broadbeach Blues Festival (Photos by Colin M Stott)";
		var imgnums7	= 54;
		var imgtd6R		= ": 02-FEB-04 ~ Melbourne Blues Festival (Photos by Colin M Stott)";
		var imgnums6	= 25;
		var imgtd5R		= ": 18-JUL-03 ~ Bundoora Hotel (Photos by Darren Roach)";
		var imgnums5	= 76;
		var imgtd4R		= ": 13-MAY-03 ~ Cornish Arms Hotel (Photos by Spud)";
		var imgnums4	= 33;
		var imgtd3R		= ": 13-MAY-03 ~ Cornish Arms Hotel (Photos by Damian)";
		var imgnums3	= 34;
		var imgtd2R		= ": 13-JUL-02 ~ St Andrews Hotel (Photos by Damian)";
		var imgnums2	= 32;
		var imgtd1R		= ": 10-NOV-02 ~ St Andrews Hotel (Photos by Emily)";
		var imgnums1	= 46;


// --- Album Title : Acoustic Sessions 

		var detail_shut_0301R 	= "Track 01 - Muddy Water Blues";
		var detail_open_0301R 	= "Track 01 - Muddy Water Blues<br>\
									. Length: 6:55<br>\
									. Written by Paul Rodgers<br>\
									. Backup Vocals by Emily Turner<br>\
									. Slide Guitar by Camille Robinson<br><br>"


		var detail_shut_0302R 	= "Track 02 - Tobacco Road";
		var detail_open_0302R 	= "Track 02 - Tobacco Road<br>\
									. Length: 4:37<br>\
									. Written by John D Loudermilk<br>\
									. Slide Guitar by Camille Robinson<br><br>";


		var detail_shut_0303R 	= "Track 03 - Walk on the Wild Side";
		var detail_open_0303R 	= "Track 03 - Walk on the Wild Side<br>\
									. Length: 5:56<br>\
									. Written by Lou Reed<br>\
									. Backup Vocals by Emily Turner<br>\
									. Slide Guitar by Camille Robinson<br><br>";


// --- Album Title : Time for a Change 

		var detail_shut_0201R 	= "Track 01 - Match Box";
		var detail_open_0201R 	= "Track 01 - Match Box<br>\
									. Length: 3.25<br>\
									. Written by Ike Turner<br><br>";


		var detail_shut_0202R 	= "Track 02 - Why Get Up";
		var detail_open_0202R 	= "Track 02 - Why Get Up<br>\
									. Length: 4.32<br>\
									. Written by Carter/Elsworth<br>\
									. Backup Vocals by Emily Turner<br><br>";
		

		var detail_shut_0203R 	= "Track 03 - Monday Blues";
		var detail_open_0203R 	= "Track 03 - Monday Blues<br>\
									. Length: 5.13<br>\
									. Written by Mr Bluez<br>\
									. Backup Vocals by Emily Turner<br><br>";
		

		var detail_shut_0204R 	= "Track 04 - Swallow My Pride";
		var detail_open_0204R 	= "Track 04 - Swallow My Pride<br>\
									. Length: 10.39<br>\
									. Written by The Hoax<br><br>";
		

		var detail_shut_0205R 	= "Track 05 - Time for a Change";
		var detail_open_0205R 	= "Track 05 - Time for a Change<br>\
									. Length: 5.00<br>\
									. Written by Mr Bluez<br>\
									. Backup Vocals by Emily Turner<br><br>";


		var detail_shut_0206R 	= "Track 06 - Cold Feet";
		var detail_open_0206R 	= "Track 06 - Cold Feet<br>\
									. Length: 4.50<br>\
									. Written by Mr Bluez<br>\
									. Backup Vocals by Emily Turner<br><br>";


		var detail_shut_0207R 	= "Track 07 - Don't Make a Fool";
		var detail_open_0207R 	= "Track 07 - Don't Make a Fool<br>\
									. Length: 4.57<br>\
									. Written by Mr Bluez<br>\
									. Backup Vocals by Emily Turner<br><br>";


		var detail_shut_0208R 	= "Track 08 - Never Let You Go";
		var detail_open_0208R 	= "Track 08 - Never Let You Go<br>\
									. Length: 4.44<br>\
									. Written by Mr Bluez<br>\
									. Backup Vocals by Emily Turner<br><br>";


		var detail_shut_0209R 	= "Track 09 - Midnight Train";
		var detail_open_0209R 	= "Track 09 - Midnight Train<br>\
									. Length: 4.37<br>\
									. Written by Reale/Tiven<br><br>";


// --- Album Title : Live at St Andrews Hotel 

		var detail_shut_0101R 	= "Track 01 - Born Under a Bad Sign";
		var detail_open_0101R 	= "Track 01 - Born Under a Bad Sign<br>\
									. Length: 3.32<br>\
									. Written by Jones/Bell<br><br>";


		var detail_shut_0102R 	= "Track 02 - Rack Em Up";
		var detail_open_0102R 	= "Track 02 - Rack Em Up<br>\
									. Length: 3.32<br>\
									. Written by Bruce Mc Cabe<br><br>";


		var detail_shut_0103R 	= "Track 03 - Killin' Floor";
		var detail_open_0103R 	= "Track 03 - Killin' Floor<br>\
									. Length: 4.42<br>\
									. Written by C Burnett<br><br>";


		var detail_shut_0104R 	= "Track 04 - Coldshot";
		var detail_open_0104R 	= "Track 04 - Coldshot<br>\
									. Length: 3.48<br>\
									. Written by K Kendrid/S R Vaughan<br><br>";


		var detail_shut_0105R 	= "Track 05 - Hard to Handle";
		var detail_open_0105R 	= "Track 05 - Hard to Handle<br>\
									. Length: 3.01<br>\
									. Written by Redding/Isbell/Jones<br><br>";


		var detail_shut_0106R 	= "Track 06 - Mary had a Little Lamb";
		var detail_open_0106R 	= "Track 06 - Mary had a Little Lamb<br>\
									. Length: 3.46<br>\
									. Written by B Guy<br><br>";


		var detail_shut_0107R 	= "Track 07 - Little Wing";
		var detail_open_0107R 	= "Track 07 - Little Wing<br>\
									. Length: 6.13<br>\
									. Written by Jimi Hendrix<br><br>";


		var detail_shut_0108R 	= "Track 08 - I Can Tell";
		var detail_open_0108R 	= "Track 08 - I Can Tell<br>\
									. Length: 3.49<br>\
									. Written by Walter Trout<br><br>";


		var detail_shut_0109R 	= "Track 09 - Foxy Lady";
		var detail_open_0109R 	= "Track 09 - Foxy Lady<br>\
									. Length: 4.47<br>\
									. Written by Jimi Hendrix<br><br>";


		var detail_shut_0110R 	= "Track 10 - Roadhouse Blues";
		var detail_open_0110R 	= "Track 10 - Roadhouse Blues<br>\
									. Length: 8.43<br>\
									. Written by The Doors<br><br>";


// --- BAND BIOS Information --- 

  
	  	var less_chris		= "Chris Natoli was born on the 11th February 1966 in Melbourne, Australia. \
      He first started playing guitar at age 10. At first it was just a bit of fun, then...";

	  	var more_chris		= "Chris Natoli was born on the 11th February 1966 in Melbourne, Australia. \
      He first started playing guitar at age 10. At first it was just a bit of fun, then at age 14 \
      when hearing Eddie Van Halens Eruption for the first time he knew that playing guitar was what \
      he wanted to do for the rest of his life. He then began taking lessons with some great local \
      guitar teachers Alan Pelavikous, Peter Wiltshire, Lou Della Riva and Craig Stafford. Later on \
      Chris started having lessons at Main Street Music with top Australian session guitarist Mark \
      Domoney. This guy could play everything and anything - this became a big turning point for Chris \
      as Mark had opened up the door to what was possible for him to achieve on guitar with a lot \
      of hard work and persistence.<br>\
      <br>\
      Over the next few years Chris started practicing 5 to 10 hours a day whilst also playing around \
      town in local original and cover bands. The past couple of years Chris has spent studying music \
      at NMIT Collingwood where he was fortunate enough to have lessons with local jazz guitarist \
      Jack Pantazis. During this time Chris has also put a lot of his time into Mr Bluez.<br>\
      <br>\
      Chris&#8217; guitar playing has been influenced by many great players - earlier on these included \
      Eddie Van Halen, Randy Rhodes, Steve Stevens, Joe Satriani, Steve Vai and local guitar players \
      Jack Jones, Joe Cool and Simon Patterson. In more recent times Chris has been heavily influenced \
      by Stevie Ray Vaughan, Steve Lukather, Jimi Hendrix, and Scott Henderson.<br>";


	  	var less_mark		= "Mark was born in Chicago, Illinois in 1971. With both parents being \
      jazz musos (his dad is a drummer and his mother a singer) the musical influence...";

	  	var more_mark		= "Mark was born in Chicago, Illinois in 1971. With both parents being \
      jazz musos (his dad is a drummer and his mother a singer) the musical influence was always going \
      to be strong, as Mark grew up watching his parents performing in the clubs and smoky jazz lounges \
      of Las Vegas and Chicago.\
      <p>Mark&#8217;s musical apprenticeship started in high school where he did lunchtime gigs with \
        the other music students as part of their assessment.</p>\
      <p>&#8220;Those high school gigs were the best experience I could have ever had.&#8221;</p>\
      <p>He then joined his first band, Eclipse, founded by two brothers from school, Adam and Darren \
        Roach where Mark played rhythm guitar and sang back up and some lead vocal.</p>\
      <p>From there he joined a Hawkwind tribute, in which he played bass and sang. Then it was a \
        70&#8217;s tribute, Blockbuster, again with the Roach Bros.</p>\
      <p>After that he and Adam Roach formed a duo, where they went on to perform on New Faces and \
        Pot Of Gold, winning an encouragement award and then first prize for playing their originals.</p>\
      <p>His next venture was Prior Conviction, a Rock and Blues cover band, which eventually became \
        The Adrenaline Junkies. It was during this time that Mark first encountered Mr. Bluez.<br>\
        &#8220;I went out with Steve (the drummer for Adrenaline Junkies) to see his friend Chris&#8217; \
        band, Mr. Bluez. I was so impressed, I said to him that if I was going to put together a blues \
        band, it would be Mr. Bluez. I just had to get rid of the singer!!!&#8221;</p>\
      <p>As luck would have it, they were soon in need of a singer, but it wasn&#8217;t to be.</p>\
      <p>&#8220;I called up to audition from an ad in the paper, but they had already found a singer. \
        I was too late.&#8221;<br>\
        But their paths would soon cross again.<br>\
        &#8220;I got a call from my old buddy Adam Roach, who wanted us to enter a battle of the bands \
        together and play some originals. He wanted to bring another guitarist in that he taught with \
        because of his great blues feel- it was none other than Chris Natoli from Mr. Bluez!!!&#8221;</p>\
      <p>Needless to say, the two got on like a house on fire, and Chris soon asked Mark to fill in \
        for Mr. Bluez until they found a permanent singer. Of course Mark jumped at the chance. When \
        the time came to make room for a permanent singer, Mark wasn&#8217;t budging. &#8220;It&#8217;s \
        a good thing that they didn&#8217;t find a replacement, because I was having way too much \
        fun. I wasn&#8217;t going anywhere!!!&#8221;</p>\
      <p>And the rest, as they say, is history&#8230;&#8230;&#8230;</p>\
      <p><br>\
        Mark&#8217;s Favourite Artists and Influences<br>\
        Stevie Ray Vaughan<br>\
        Paul Rodgers<br>\
        Gov&#8217;t Mule<br>\
        Jimi Hendrix<br>\
        Gary Moore<br>\
        Robben Ford<br>\
        Tower Of Power<br>\
        Renee&#8217; Geyer<br>\
        Jonny Lang<br>\
        Ian Moore<br>\
        Jeff Healey<br>\
        Kenny Wayne Sheppard<br>\
        Susan Tedeschi<br>\
        The Allman Brothers Band<br>\
        Stevie Wonder<br>\
        Donny Hathaway<br>\
        Earth Wind and Fire<br>\
        The Hoax<br>\
        Chris Duarte</p>";


	  	var less_peter		= "My earliest memories of harmonica are of sitting at my Dad&#8217;s \
      feet when I was about four or five years old, while he played sing-a-long tunes...";

	  	var more_peter		= "My earliest memories of harmonica are of sitting at my Dad&#8217;s \
      feet when I was about four or five years old, while he played sing-a-long tunes at parties in \
      our kitchen. Everybody would be singing along to songs such as &#8220;When the Saints&#8221;, \
      &#8220;Merrily we roll along&#8221;, and &#8220;I&#8217;ve got a lovely bunch of coconuts&#8221;!! \
      He was a member of the Williamstown Mouth Organ Band before the 2nd world war, and played a \
      tongue-blocking vamping style (on a Hohner Super Vamper, or Super Echo).\
      <p>I started playing harmonica when I was around twelve years of age, but not really seriously. \
        I&#8217;d try and play what my father played, which served me well in terms of playing chords \
        and melody rhythmically together. </p>\
      <p>Around this time, my parents wanted my brother and I to learn keyboard, but they couldn&#8217;t \
        afford to buy a piano, so we ended up learning Piano Accordion for five years. We ended up \
        doing accordion duets at a few Eisteddfods around Melbourne and country Victoria. At the time \
        I kind of hated the accordion, but I&#8217;m glad I learnt it as the experience taught me \
        how to discipline and apply myself to music, and read music to a reasonable level, especially \
        treble clef.</p>\
      <p>The first vinyl LP I bought was Fats Domino. I was, and still am, a sucker for New Orleans \
        rhythm and blues. (These days, check out Anders Osborne, Tommy Malone, and the Subdudes!!) \
        This Fats Domino album was followed closely by The Animals, and The Rolling Stones records. \
        Hearing Brian Jones incredible playing really turned me on to blues harp (just listen to his \
        playing on &#8220;Now I&#8217;ve got a Witness&#8221;). Little did I realise that his solo \
        on &#8220;Honest I Do&#8221; was Jimmy Reed note for note. I hadn&#8217;t even heard the black \
        dudes they were covering. I didn&#8217;t know about 1st position, or the difference between \
        that and &#8220;cross harp&#8221;, otherwise known as 2nd position, either.</p>\
      <p>When I was about fourteen years old I heard Sonny Terry with Brownie McGhee, and thought \
        &#8220;What the ??!!&#8221;. How in heck does he do that? I still marvel at his brilliant \
        and tasteful accompanying rhythms and his &#8220;whoopin&#8217; and hollerin&#8217;&#8221;. \
      </p>\
      <p>About this time I bought a cheap acoustic guitar (from money earned by delivering the morning \
        newspapers) and started to teach myself from a couple of &#8220;Sing Out&#8221; magazines \
        and some chord books of American Folk and Blues songs. The guitar&#8217;s action was high, \
        but after initially drawing blood, it helped me to form good calluses. I could now play a \
        simple song and sing at the same time &#8230;&#8230;&#8230;&#8230; I was playing folk music \
        &#8211; Pete Seeger, Kingston Trio, Burl Ives, Bob Dylan, etc. </p>\
      <p>In 1965 the cover of the &#8220;Paul Butterfield Blues Band&#8221; intrigued me &#8211; three \
        white guys and two black &#8211; they sure looked tough, street-wise, and absolutely cool. \
        When I put that record on, it simply blew me away!! Such powerful energy. Blues that rocks!! \
        Folk music was no longer enough. Like Dylan, I had to go electric! I also now knew that I \
        had to learn much more about harmonica playing.</p>\
      <p>I got Tony Glover&#8217;s instructional book and album, the only harmonica instruction around \
        at the time. Working through this fantastic book I began to search out albums from Sonny Boy \
        Williamson 2 (Rice Miller) and Little Walter, as well as more Sonny Terry. I found out that \
        to get a bluesy harp sound you usually play in a different key to the band!! This &#8220;missing \
        piece&#8221; opened up incredible new and authentic blues sounds for me. In listening and \
        playing along with their records, I began to learn a few licks here and there. However, it \
        took me at least 6 to 8 months before I could bend notes. I read about soaking your harps \
        to make the wood swell and make them more airtight. I did this with all ten harps I had. A \
        few days later when I took them out of the plastic bag I kept them in, the wood had swelled \
        up above the tops of the harps, and they were all mouldy!! I kept sucking in green mould and \
        cutting my lips on the wood. I had to throw them ALL out. That was an expensive exercise!! \
      </p>\
      <p>I agree with Tony Glover &#8211; Sonny Boy Williamson 2 &#8220;was the all-time, non-stop \
        BOSS of blues harp&#8221;!! Not only his expressive playing, but also his heartfelt songs \
        and the way he sings them.</p>\
      <p>Paul Butterfield&#8217;s playing remains a steady favourite. He lived and breathed the blues. \
        His tone and elegant choice of notes is still something I aspire towards. I keep going back \
        to his first two Elektra records, and the two &#8220;Better Days&#8221; albums in the mid-seventies, \
        and continue to be inspired by his playing, singing and the incredible grooves and togetherness \
        of the bands he led. His playing on the double live album on the track &#8220;Driftin&#8217; \
        and Driftin&#8217;&#8221; has to be one of my all-time favourite harp solos. Everything you \
        need is right there. &#8230;&#8230;&#8230;&#8230;..</p>\
      <p>From the mid sixties onwards, other harp players I continue to listen to include (in no particular \
        order): Bob Dylan (he really can play!!), John Mayall, Sonny Boy Williamson 1, George &#8220;Harmonica&#8221; \
        Smith, &#8220;Big Walter&#8221; Horton, Junior Wells, Slim Harpo, Jimmy Reed, Rhythm Willie, \
        Paul Oscher, Sugar Blue, Lonnie Glosson, Snooky Prior, John Sebastian, Charlie Musselwhite, \
        Magic Dick, Rod Piazza, Charlie McCoy, Norton Buffalo, Paul deLay, Mike Stevens, Blind Mississippi \
        Morris, Studebaker John, Tom Ball, Terry McMillan, William Clarke, Rick Estrin, Mark Hummel, \
        Mark Ford, Ralph Shine, John Popper, Dennis Gruenling, Greg &#8220;Fingers&#8221; Taylor, \
        King Biscuit Boy, James Cotton, Carey Bell, Jim Conway, Broderick Smith, Carlos Del Junco, \
        Howard Levy, etc. </p>\
      <p>I trust this gives some idea of where I&#8217;m coming from!!<br>\
      </p><br>\
	  Peter W. Thorneycroft - Musical Bio<br>\
	  <br>\
      Born 29 May 1948 \
      <p></p>\
      <p>1962 - 1964 &#8220;Point 4&#8221; - 4 Piece Cover Band formed at High School <br>\
        <br>\
        pwt on vocals - <br>\
        playing Rolling Stones and other current covers at school dances, etc.</p>\
      <p><br>\
        1965 - 1966 &#8220;Tarriers&#8221; - Folk Trio<br>\
        <br>\
        pwt played acoustic guitar and harmonica, vocals - <br>\
        playing Dylan, Weavers, Pete Seeger, etc. in Melbourne coffee lounges and folk clubs.</p>\
      <p><br>\
        1969 - 1975 &#8220;Bookends&#8221; - Cover Band (4 Piece)</p>\
      <p>pwt played Fender Jazzmaster guitar, harmonica and Hammond organ, vocals -<br>\
        playing Eagles, Booker T, Ray Stevens, Chuck Berry, Elvis, Jerry Lee Lewis, etc.</p>\
      <p> regularly played at Collingwood Football Club, <br>\
        and the legendary infamous &#8220;Smokey&#8217;s Sunday Sippers&#8221; at South Melbourne \
        Football Club, as well as lots and lots of pubs and parties all over Melbourne and Victoria.</p>\
      <p><br>\
        1976 - 1982 &#8220;Riff Band&#8221; - 5 Piece Funk&#8217;n&#8217;Covers Band</p>\
      <p>pwt played guitar, harmonica, and keyboard (Solina String Ensemble), vocals -<br>\
        playing some original instrumentals, as well as funkified re-arrangements of well known and \
        not-so-well-known songs including Joe Walsh, George Benson, Boz Scaggs, Ozark Mountain Daredevils, \
        James Taylor, Carol King, Ned Doheny, Crusaders, Steely Dan, Average White Band, etc.</p>\
      <p> regularly played at The Weathercock, The Grainstore, and The Roxy,<br>\
        appeared on &#8220;Hey Hey, it&#8217;s Saturday&#8221; two or three times (&#8220;I can&#8217;t \
        remember exactly!&#8221;), performing 5 or 6 songs live (which was rare, as most acts mimed). \
        Daryl Somers used to regularly sit in on drums with the band on Saturday afternoons at the \
        Weathercock , where many of the &#8220;Hey Hey&#8221; crew would unwind after doing their \
        show in the morning. <br>\
        The band was known for Ross Inglis&#8217; instrumental and harmony arrangements and it&#8217;s \
        two (and sometimes three) guitar harmony parts.<br>\
        1982 - 1983 &#8220;The Flaps&#8221; - Acoustic Duo</p>\
      <p> pwt played Maton acoustic guitar and harmonica, vocals<br>\
        playing America, Eagles, etc.</p>\
      <p><br>\
        1984 - 1985 Martin, Barton &amp; Fargo - Trio with midi backing</p>\
      <p>pwt played acoustic guitar, harmonica, Roland Guitar Synthesizer, <br>\
        DX7 Synthesizer, vocals -<br>\
        formed with the two guitarists from Riff Band, Ross Inglis &amp; Garry Whelan.<br>\
        Played mainly The Grainstore - Ross Inglis incredible arrangements triumphed once again!!</p>\
      <p><br>\
        1986 - 1991 Wheels &amp; Croft&#8221; -Two Man Band, with midi backing</p>\
      <p> pwt played guitar and harmonica, vocals -<br>\
        playing rock&#8217;n&#8217;roll, and other stuff from people like those above.<br>\
        Played regularly at The Roxy and heaps of pubs all over Melbourne and Victoria.</p>\
      <p><br>\
        1997 - 2002 &#8220;Bluescasters&#8221; - 7 piece Blues band </p>\
      <p> pwt playing harmonica, vocals - <br>\
        mainly playing St Andrews, and Sturt St. Blues Club in Ballarat</p>\
      <p><br>\
        1999 - 2001 Bourne, Thorn &amp; Friends, aka &#8220;the housewreckers&#8221; - 4 Piece Blues \
        band</p>\
      <p>pwt playing harmonica (&amp; occasional organ, &amp; acoustic &amp; electric guitars), vocals \
        -<br>\
        mainly playing St. Andrews, &amp; Rainbow Hotel Fitzroy, &amp; Sturt St Blues.</p>\
      <p><br>\
        2001 &#8211; now Mr Bluez &#8211; 6 Piece Blues Band</p>\
      <p> pwt playing harmonica, vocals.</p>";


	  	var less_matt		= "I was born in 1978 in Gippsland and took to playing my fathers piano \
      at a young age. I received my first formal lessons at the age of 8 and...";

	  	var more_matt		= "I was born in 1978 in Gippsland and took to playing my fathers piano \
      at a young age. I received my first formal lessons at the age of 8 and jazz and blues were my \
      first influences. Particularly ballads like 'Stormy Weather' and 'Misty'.<br>\
      Throughout high school I kept at playing blues and gospel and slowly moved into groove and funk. \
      James Brown, Sly and the family Stone Courdoroy and D.I.G.<br>\
      Studying a Bachelor of Music at La Trobe Uni Bundoora, I dropped out after 3 semesters and joined \
      and co-formed my first band &quot;Bakehouse&quot; a funk and groove outfit. Bakehouse went on \
      to have moderately good success. <br>\
      With my own groups Geeky P Misenthrope and the Matt Bolding quartet this allows me to improvise \
      in small groups in true jazz tradition. I also do my fair share of cover gigs The Australian \
      Van Morrison Show and Boogie Nights a 10 piece disco outfit. Not to forget the odd piano bar \
      work and accompanying singers <br>\
      Back to playing roots I am the pianist for the Steve Boyd Revue and have been playing keys in \
      Mr Bluez for about 2 years. <br>\
      I met Chris through an N.M.I.T course studying Music Performance and Chris asked me to join \
      the band.<br>\
      Mr Bluez is the one group that allows me rock on and rock out and still have fun cutting solos \
      in all flavours of bluez and bluez funk. <br>\
      I think it's important to play in as many different groups as possible. Having knowledge in \
      all styles of music will not limit what you can and can not do. Matthew Phillip Bolding 16 of \
      May 2003.";


	  	var less_james		= "Originating from the country town of Benalla, James has moved down \
      to Melbourne to pursue a career in music. In the year 2002, he completed...";

	  	var more_james		= "Originating from the country town of Benalla, James has moved down \
      to Melbourne to pursue a career in music. In the year 2002, he completed a music performance \
      course at NMIT and began playing on the Melbourne Pub circuit. Since arriving on the scene he \
      has gained valuable experience gigging with a number of different bands.<br>\
      As well as Mr Bluez, James also plays in a young Rock Band &quot;The Flight&quot;, who have \
      developed a steady following in their short time together. In the future James hopes to perform \
      full time and make a career out of his music.<br>\
      D.O.B.: 6th November 1983.<br>\
      Musical Influences: Jaco pastorius, Les Claypool, Stuart Zender, Marcus Miller.<br>\
      Gear: Fernandes 5 String Bass, Hartke HA2000 Amp, Sovtek 410C Cab.";


		var less_silas		= "Silas was born in Canberra in 1980 and has been playing drums since \
		he was 14 years old. He moved to Melbourne in the year 2000...";

		var more_silas		= "Silas was born in Canberra in 1980 and has been playing drums since \
      he was 14 years old. He moved to Melbourne in the year 2000 to pursue a career in music.<br>\
      In 2002 he completed a Diploma in Jazz Performance at the North Melbourne Institute of Tafe \
      with fellow Mr Bluez bandmates Chris, Matt and James.<br>\
      Silas joined Mr Bluez in 2001, bringing a touch of jazz to the band as well as plenty of hard \
      rocking beats. He currently performs regularly around Melbourne with various jazz and funk bands \
      as well as the one and only Mr Bluez. Whether he’s grooving along on a shuffle, supporting a \
      soloist or soloing himself, Silas is definitely a drummer to watch.";


	  	var less_review1	= "Well the hardest thing in reviewing a CD of this kind of track listing \
      is basically what to say. We all know the songs, we have all probably heard them...";

	  	var more_review1	= "Well the hardest thing in reviewing a CD of this kind of track listing \
      is basically what to say. We all know the songs, we have all probably heard them each a million \
      times. So what is so special about releasing a CD of covers when most bands have rehashed or \
      hacked them over and over. Firstly... Once again Rob Harwood shines in his capacity as the live \
      recording dude, he really has a handle on the live aspect and the production side of things \
      is superb. Secondly ... Mr Bluez (no relation to me) does have a raw energy and the band members, \
      Mark Turner on vocals - Chris Natoli on guitar - Chris Gatanios on bass and Paul Worrall on \
      drums, are each exclusively talented. Recorded live at the famous St Andrews Hotel in Victoria, \
      this is a 12 track sampler of what you are going to get when you see these guys live. Well maybe \
      special guest Peter Thorneycroft on harmonica won't be there each time, but it is raw gut level \
      power rock blues to satisfy the tastes of those hungering after that 70's and 80's buzz.\
      <p>The guitar riffs from Chris Natoli are the stand out here, we have one talented musician \
        on our hands and It really does justice to listen to this one a few times as the more you \
        listen, the more licks and riffs you discover. As expected from any live situation there are \
        a couple of small areas that are rough edged, but basically it is a solid and faithful reproduction \
        of those days long gone by, when we used to hang out in dimly lit pubs and grog on to the \
        sizzling sounds of our favorite artists. I'm going to go and grab a bottle of Jack Daniel's \
        and party on..</p>\
      <p>Available from the band at gigs, and also the following stores in Victoria: Music Jungle \
        - 746 High St, Northcote and also JB HiFi - Murray Road, Preston. It doesn't hurt to have \
        a few covers on the shelf, but the raw live CD's such as this do far more than the polished \
        studio attempts to recreate the golden era.</p>\
      <p>Oh and I forgot, wicked artwork on the front cover... makes you imagine they are a heavy \
        metal band.</p>\
      <p>REVIEW and Copyright by Mark 'radar' Watson (Mr Blues) November 2000</p>";


		var radio1			= " - This interview was recorded on 102.7 3RRR in Melbourne on the \
		\"Son of Crawdaddy\" Programme. It covers a bit of our history and we talk about our original\
		songs and the newly released Mr Bluez Album \"Time for a Change\". Three of the Six band \
		members (Chris, Mark and Peter) perform 3 acoustic songs live (\"Blue on Black\",  \"Time for\
		 a Change\"	and \"Monday Blues\"). The full interview goes for 27 minutes so please enjoy !";


// ----------------------------------------------------------------------



