$(document).ready(function(){
		
	$('a').click(function(){
		switch($(this).attr('uid'))
		{
			case 'our_team' :
			case 'about_us' :
			case 'music_lessons' :
			case 'music_therapy' :
			case 'wee_expressions' :
			case 'early_expressions' :
			case 'parties' :
			case 'sign_expressions' :
			case 'pictures' :
			case 'compositions' :
			case 'helpful_links' :
			case 'forms_policies' :
			case 'contact_us' :
			case 'careers' :
			case 'events' :
			case 'testimonial' :
				location.href = '/' + $(this).attr('uid') + '.html';;
			break;
			default :
			break;
		}
	});
});
