$(document).ready(function() {
	$.ajaxSetup ({
		cache: false
	});
	var ajax_load = '<img src="/site-includes/images/ajax-loader.gif" id="loading" alt="loading" />';
	$.current_hole_no = "1";
	//the main number links
	$("#controls li").click(function(){
		
		if ($(this).attr("class") == "next_hole" || $(this).attr("class") == "prev_hole")
		{
			if ($(this).attr("class") == "next_hole")
			{
				if ($.current_hole_no == 18) { return false; }
				$.current_hole_no++;
			}
			else if ($(this).attr("class") == "prev_hole")
			{
				if ($.current_hole_no == 1) { return false; }
				$.current_hole_no--;
			}
			$("#controls li").removeClass("selected");
			var loadUrl = "/course/view/hole-" + $.current_hole_no;
			$("#hole").html(ajax_load).load(loadUrl);
			$("#controls li." + $.current_hole_no).addClass("selected");
		}
		else
		{
			$("#controls li").removeClass("selected");
			$.current_hole_no =  $(this).attr("class");
			var loadUrl = "/course/view/hole-" + $(this).attr("class");
			$("#hole").html(ajax_load).load(loadUrl);
			$(this).addClass("selected");
		}

		if ($.current_hole_no == 18)
		{
			$(".next_hole").html('<span>&raquo;</span>');
		} else {
			$(".next_hole").html('<a href="#" title="Next">&raquo;</a>');
		}

		if ($.current_hole_no == 1)
		{
			$(".prev_hole").html('<span>&laquo;</span>');
		} else {
			$(".prev_hole").html('<a href="#" title="Previous">&laquo;</a>');
		}
		
		return false;
	});

});
