<!-- 
var theText = new Array()
//main menu
theText[0] = 'View our Blog @ dublinrocks.blogspot.com ...'
theText[1] = 'Have a rummage through our vaults ...'
theText[2] = '&quot; This is not a city guide as such ... &quot;'
theText[3] = 'Check out the talent...'
theText[4] = 'The Rock + Roll Rescue Squad – We&rsquo;re Here to Help ...'
//about us
theText[5] = 'The Rock + Roll Rescue Squad – We&rsquo;re Here to Help ...'
theText[6] = 'They made us do it ...'
theText[7] = 'Whether it be a Bar, a Nightclub, an event, product launch ...'
//FOOTER
theText[8] = 'Join our mailing list ...'
theText[9] = 'Write and send us an electronic mail ...'
//archive menu
theText[10] = '&quot; The night that started it all off! ... &quot;'
theText[11] = '&quot; Ireland&rsquo;s first &lsquo;Easy Listening&rsquo; club ... &quot;'
theText[12] = '&quot;... &lsquo;brunch club for urban modernists&rsquo; ... The Original Brunch club&quot;'
theText[13] = '&quot; If the world&rsquo;s most influential DJ acts performing in intimate ... &quot;'
theText[14] = '&quot; Europe&rsquo;s Biggest Ever Club Event ... &quot;'
theText[15] = '&quot; Our Gold Selling Homage To Gay Byrne ... &quot;'
//our dublin
theText[16] = '&quot; This is not a city guide as such ... &quot;' 
theText[17] = 'Put on those dancin&rsquo; pants ...' 
theText[18] = 'When its all over ...' 
theText[19] = 'Fellin&rsquo; hungry? ... ' 
theText[20] = 'Wettin your whistle ...' 
theText[21] = 'Get your barings with our very own Google Map ... ' 
//Sassy Sues Upcoming
theText[24] = 'Sassy Sue\s Homepage' 
theText[25] = 'The Urges – Live Album Launch October 26th' 
theText[26] = 'Jim Jones Revue LIVE – November 16th' 
theText[27] = 'Andy Lewis – Blow Up Christmas Dec 28th'
//Clubs
theText[30] = 'Songs Of Praise... What\'s on...' 
theText[31] = 'Sassy Sue\'s Go Go Inevitable... What\'s on...' 
theText[32] = 'Strictly Handbag... What\'s on...'
//Gallery
theText[40] = 'Images, Posters &amp; Flyers...'
//External Sites
theText[50] = 'Visit The Web Site...'
//HOMEPAGE
theText[100] = 'Go back to the previous page'
var theRandom = new Array()
//random rolloffs
theRandom[0] = '... Hmmmm ...'
theRandom[1] = '... decisions decisions ...'
theRandom[2] = '... you take your time ...'
theRandom[3] = '... they all look so damn interesting ...'
theRandom[4] = '... Ehh ... Let me see ...'
theRandom[5] = '... what about ...'
theRandom[6] = '... Click ME! ...'
theRandom[7] = '... hurry up ...'
theRandom[8] = '... ok ... concentrate ...'
theRandom[9] = '... would sir/madame like some help? ...'
theRandom[10] = '... does you mother know your out? ...'

function showText(i){
		document.getElementById("textTip").style.color = '#000';
		document.getElementById("textTip").innerHTML = theText[i];
}

function hideText(){
	//var p = theRandom.length;
	//var whichRandom = Math.round(Math.random()*(p-1));
		//document.getElementById("textTip").style.color = '#888';
		//document.getElementById("textTip").innerHTML = theRandom[whichRandom];
		document.getElementById("textTip").innerHTML = " ";
}

//-->