$(document).ready(function()
{
	$('#goTime').click(function() {
		window.location = "./go_time.php";		
	});
	$('#estimate').click(function() {
		window.location = "./estimate.php";		
	});
	$('#goTime').mouseover(function () {
		$(this).css('cursor', 'hand');
	});
	$('#goTime').mouseout(function () {
		$(this).css('cursor', 'pointer');
	});
	$('#estimate').mouseover(function () {
		$(this).css('cursor', 'hand');
	});
	$('#estimate').mouseout(function () {
		$(this).css('cursor', 'pointer');
	});
});
