// **** CONFIGURATION **** //
// **** CONFIGURATION **** //
// **** CONFIGURATION **** //
var gProps = {}
gProps.title = "MacPros";

var gButtons = [];
gButtons.push({text:"Home",href:"index.html"});
gButtons.push({text:"Services",href:"services.html",append_title: ": Services"});
gButtons.push({text:"Service Area",href:"area.html",append_title: ": Service Area"});
gButtons.push({text:"Rates",href:"rates.html",append_title: ": Rates"});
gButtons.push({text:"Contact",href:"contact.html",append_title: ": Contact"});

var gEmailProps = {};
gEmailProps.name = {message:"Please enter your name."};
gEmailProps.email = {message:"A valid email address is required."};
gEmailProps.verify_email = {message:"Please verify your email address."};
gEmailProps.phone_number = {message: "Please enter a 10 digit number."};

//**************** DO NOT EDIT BELOW ********************//
//**************** DO NOT EDIT BELOW ********************//
//**************** DO NOT EDIT BELOW ********************//
var gDebug = {};
gDebug.tools = false; // turn on the debug tools? //
gDebug.colors = {div:"red",p:"black",table:"lime",td:"white",back_color:"#ffa555"};

// init globals //
gProps.page = unescape(location.href).split('/').pop().split("?")[0];
gProps.qs = {}
// Check the Query String //
if(location.search){
	var qs = location.search.split("?")[1].split("&");
	if(qs.length){
		for(var x in qs){
			var i = qs[x].split("=");
			// Force all properties to uppercase //
			gProps.qs[i[0].toLowerCase()] = i[1].toLowerCase();	
		}
	}
}

var gPaths = {};
gPaths.base = "/";
gPaths.css = gPaths.base + 'css/';
gPaths.js = gPaths.base + 'js/';
gPaths.media = gPaths.base + 'media/';
gPaths.graphics = gPaths.media + 'images/';
gPaths.flash = gPaths.media + 'flash/';
gPaths.pdf = gPaths.media + 'pdf/';

var gBrowser = {};
gBrowser.supported = false;
gBrowser.support_png = true;
// These are the default supported browsers IE is always supported //
gBrowser.browsers = ["Opera","Netscape","Safari","Flock","Firefox"];
// If you want to block unsupported browsers then set .redirect = true //
gBrowser.redirect = false;
