
	function showHint(event , number ) {
					hideHint();
					var x = mouseX(event);
					var y = mouseY(event);
					var hint = document.getElementById('hint');
					var html;
					
					html = locations[number] ;
					/*
					switch ( number ) {
						case 0:
							html = '<h2>Dance City CAT</h2>';
							html+= 'Pete Huggins (Associate Director: Education) <br />or Carolyn Smail (CAT Coordinator) <br />';
							html+= 'address: Temple Street, Newcastle upon Tyne NE1 4BR<br />';
							html+= 'tel: 0191 261 0505 Tel: 0191 269 5578<br />';
							html+= 'email: carolyn.smail@dancecity.co.uk <br />';
							html+= 'website: www.dancecity.co.uk/academy.php';
							break;
						case 1:
							html = '<h2>Yorkshire Young Dancers</h2>';
							html+= 'Ballet strand, Northern Ballet Theatre  <br />';
							html+= 'address: West Park Centre, Spen Lane, Leeds LS16 5BE <br />';
							html+= 'tel:0113 274 5355<br />';
							html+= 'email: academy@northernballettheatre.co.uk <br />';
							html+= 'website: www.northernballettheatre.co.uk/academy.aspx';
							break;
						case 2:
							html = '<h2>The Lowry CAT </h2>';
							html+= ' Jonathan Poole (CAT Manager)<br />';
							html+= 'address: The Lowry, Pier 8 Salford Quays, M50 3AZ <br />';
							html+= 'tel: 0161 876 2025 <br />';
							html+= 'email: jonathan.poole@thelowry.com<br />';
							html+= 'website: www.thelowry.com';
							break;
						case 3:
							html = '<h2>Dance4 CAT </h2>';
							html+= 'Kirsten Jeavons (Administrator) <br />'; 
							html+= 'address: 3-9 Hockley,<br /> Nottingham, NG1 1FH  <br />';
							html+= 'tel: 0115 941 0773<br />';
							html+= 'website: www.dance4.co.uk <br />';
							html+= 'email: Kirsten@dance4.co.uk ';
							break;
						case 4:
							html = '<h2>DanceXchange Centre for Advanced Training</h2>';
							html+= 'Louise O\'Hanlon (CAT Programme Manager)<br />';
							html+= 'address: DanceXchange, Birmingham Hippodrome, Thorp Street,<br />Birmingham B54TB  <br />';
							html+= 'tel: 0121 689 1096<br />';
							html+= 'email: louise.o\'hanlon@dancexchange.org.uk<br />';
							html+= 'website: www.dancexchange.org.uk';
							break;
						case 5:
							html = '<h2>Swindon Dance - Youth Dance Academy </h2>';
							html+= 'Viv Slayford (Programme Manager) <br />';
							html+= 'address: Swindon Dance, Town Hall Studios, Regent Circus, Swindon SN1 1QF<br />';
							html+= 'tel:01793 601702 <br />';						
							html+= 'email: yda@swindondance.org.uk<br /> ';
							html+= 'website:www.swindondance.org.uk/YDA/youthDanceAcademy.aspx ';
							break;
						case 6:
							html = '<h2>DanceEast Academy</h2>';
							html+= 'Lucy Hegarty (DanceEast Academy Manager) <br />';
							html+= 'address:  Jerwood DanceHouse, Foundry Lane. Ipswich. <br />Suffolk. IP4 1DJ <br />';
							html+= 'tel: 01473 295230<br />';
							html+= 'email: academy@danceeast.co.uk<br />';
							html+= 'website: www.danceeast.co.uk/academy<br />';
							html+= 'facebook: DanceEast Academy Facebook Page <br />';
							html+= 'bebo: www.bebo.com/DanceEast_Academy  ';
							break;
						case 7:
							html = '<h2>The Place CAT - London Contemporary Dance School </h2>';
							html+= 'Lucy Field (CAT Programme Manager)<br />';
							html+= 'address: 17 Duke\'s Road, London WC1H 9PY<br />';
							html+= 'tel: 020 7121 1035  <br />';
							html+= 'fax: 020 7121 1142<br />';
							html+= 'email: lucy.field@theplace.org.uk <br />';
							html+= 'website: www.theplace.org.uk ';					
							break;
						case 8:
							html = '<h2>Laban CAT</h2>';
							html+= 'Martin Collins (CAT Programme Manager) <br />';
							html+= 'address: Creekside, London SE8 3DZ  <br />';
							html+= 'tel: 020 8469 9462  <br />';
							html+= 'fax:  020 8469 8400<br />';
							html+= 'email: m.collins@laban.org<br />';
							html+= 'website: www.laban.org';
							break;

						case 9:
							html = '<h2>Yorkshire Young Dancers</h2>';
							html+= 'Contemporary strand, Northern School of Contemporary Dance<br />Emily Buttery (Education and Community Co-ordinator) <br />';
							html+= 'address: 98 Chapeltown Road, Leeds LS7 4BH <br />';
							html+= 'tel: 0113 219 3005 <br />';
							html+= 'email: emily.buttery@nscd.ac.uk or yyd@nscd.ac.uk <br />';
							html+= 'website: www.nscd.ac.uk';
							break;
						default:
							html = '';																																													
					} */
					if ( !hint ) return;
					hint.style.left = ( x+10 ) + 'px';
					hint.style.top = ( y - 180 ) + 'px';
					var con = document.getElementById('hint_content');					
					con.innerHTML = html;
					hint.style.display = 'block';
				}	
			
				function hideHint() {
					var hint = document.getElementById('hint');
					if ( !hint ) return;
					hint.style.display = 'none';
				}
				
