	$(function() {  
		$('table tbody tr.score').mouseover(function() {  
			$(this).addClass('tee_selected');  
		}).mouseout(function() {  
			 $(this).removeClass('tee_selected');  
		}).click(function() { 
			 
			var hole_number = $('td:first', this).text(); 
			var hole_link = 'http://www.threelocksgolfclub.co.uk/course/';
			
			
			hole_link += 'hole-' + hole_number;
			
			 window.location = hole_link;
		});  
	}); 
	
	