var gmap;
var mailer;

/***************************************************************************
 * Initialization
 ***************************************************************************/

function initialize(key) {
	
	initParameters();
	createChildren(key);
	initEvents();
	
}

function initParameters() {
	
	
}

function createChildren(key) {
	
	gmap = new GoogleMap(key);
	gmap.load();
	
	mailer = new Mailer();
	
}

function initEvents() {
	
	$('#send').click( function() {
		return mailer.onSend();
	});
	
	$('#route').click( function() {
		return gmap.loadDirections();
	});
	
	GEvent.addListener(gmap._gDir, "load", function() {
    	onRouted();
    });
	
}


/***************************************************************************
 * Event Handlers
 ***************************************************************************/

function onSubmitAddress() {
	gmap.loadDirections();
}

function onRouted() {
	
}
