function loadFacility ( id )
{
	showUnits( id );
	
	$.getJSON( "/models/locations.php?json&facility=" + id, function( data )
	{
		$("#hours").fadeIn("slow");
		
		$("#location .content").html( '<p class="ui-loading">Loading Location...</p>' );
		$("#location").fadeIn("slow");
		$("#location .content").load( '/views/address.php?facility=' + id, function()
		{
			$("a[rel=lightbox]").lightBox(
			{
				overlayBgColor: "#0D366F",
				imageLoading:   "/img/lightbox/loading.gif",
				imageBtnClose:  "/img/lightbox/closelabel.gif",
				imageBtnPrev:   "/img/lightbox/prev.gif",
				imageBtnNext:   "/img/lightbox/next.gif",
				imageBlank:     "/img/lightbox/blank.gif"
			});
		});
	
		$("#specials").fadeIn("slow");
		
		$("#map .content").html( '<p class="ui-loading">Loading Map...</p>' );
		$("#map").fadeIn("slow");
		$("#map .content").load( '/views/map.php?facility=' + id );
	});
}