// JavaScript Document
function GoogleMap(){
	// Properties
	this.icon_path;
	this.icons = new GoogleIcon();
	this.directions;
	// Methods
	this.createMarker = createMarker;
	//this.setIconPath  = setIconPath;
	//this.createIcon   = createIcon;
	

}
function isBrowserCompatible(){
	if(GBrowserIsCompatible()){
		return true;
	}else{
		return false;
	}
}
function createMarker(point,html,icon) {
	var marker = new GMarker(point,icon);
	
	var infoTabs = [
		new GInfoWindowTab("Info", html)
	];
	
	GEvent.addListener(marker, "mouseover", function() {
		marker.openInfoWindowTabsHtml(infoTabs);
	});
	return marker;
}
/*
function setIconPath( path ){
	this.icon_path = path;
}
*/
/*
function createIcon(file_name){
	return new GIcon(G_DEFAULT_ICON, this.icon_path + file_name);
}
*/
function GoogleIcon(){
	
}

