//declare name space for logging
passenger.logging = function(){}

/**
 * Method used for logging the debug messges on the top debug window
 */
passenger.logging.debug = function(debugString) {
	window.top.logDebugMessage(debugString);
}
