//the following functions listen for navigation tab clicks and load the appopriate section via AJAX
//var rootUrl = "http://localhost:9038/";
//var rootUrl = "http://localhost/birmingham_met/";

$(document).ready(function(){
	
	var navtitle = new Array();
	navtitle[0] = "INTRODUCTION";
	navtitle[1] = "INDOOR SWIMMING POOL";
	navtitle[2] = "LIVINGWELL HEALTH CLUB";

	
	var navCount = 0;
	$('#relax_ajax_container').cycle({ 
	    fx:     'scrollHorz', 
	    speed:  600, 
	    pager:  '.secondNav',
		timeout:  0,
		pagerAnchorBuilder: function(idx, slide) { 
		        // return selector string for existing anchor 
			if (navCount>0){
			        return '<li>' + navtitle[idx] + '</li>'; 
			}
		navCount++;
		    }
	});

});