/* Set some global variables */
ajaxUrl = "http://www.rescuesim.com/";
//ajaxUrl = "/";


/* Extend the array object to contain an inArray function */
Array.prototype.inArray = function(value){
	for (var i in this) { 
		if (typeof this[i] == 'string' && this[i].toLowerCase() === value.toLowerCase()){
			return true;
		}
	} 
	
	return false;
}

