var __ENV = 'PROD';

function getWMSURL() {
	if (__ENV == 'DEV')
		return '/cgi-bin/mapserv';
	else
		return 'http://wms.thepieguide.com/';
}

function getWFSURL() {
	if (__ENV == 'DEV')
		return '/cgi-bin/mapserv';
	else
		return '/wfs/';
}

OpenLayers.Util.getScriptsLocation = function() {
	if (__ENV == 'DEV')
		return '/map-bin/';
	else
		return '/cgi-bin/';
}

OpenLayers.Util.getImagesLocation = function() {
	if (__ENV == 'DEV')
		return '/gmedia/theme/default/img/';
	else
		return '/ol/theme/default/img/';
}

function log(obj) {
	if (typeof console != 'underfiend')
		console.log(obj);
}

