	$(document).ready(function(){   
		settings = {
		tl: { radius: 5 },
		tr: { radius: 5 },
		bl: { radius: 5 },
		br: { radius: 5 },
		autoPad: true,
		validTags: ["div"]
		}
		$('.curve').corner(settings);	
		$('#toggle').click(function() {
			$('#toggle').fadeOut();
			$('#coach-locator-panel').fadeIn(1000);			  
		});	
		$('#hidePanel').click(function() {
			$('#toggle').fadeIn();
			$('#coach-locator-panel').fadeOut(1000);
			showMap();	
		});	
		$("#coach-locator-panel").makeFloat({x:"current",y:"current"});	  
	});
	
	function locateCoach(loc) {
		$('#coach-list').fadeOut().html('');
		$.ajax({
		   type: "POST",
		   url: "inc/ajax.php",
		   data: "action=locatecoach&loc=" + escape(loc),
		   success: function(res){
			 $('#map').fadeOut(100, function() {
				$('#details').css('min-height','300px');
				$('#coach-list').html(res).fadeIn(100);
			 });
		   }
		});		  
	}
	
	function showMap() {
		$('#coach-list').fadeOut().html('');
		$('#details').css('min-height','0');
		$('#map').fadeIn();		
	}
