// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function numbered_icon(num){
    var icon = new GIcon(G_DEFAULT_ICON);
    icon.image = "/images/map/marker-"+(num+1)+".png";
    icon.shadow = "/images/map/marker-shadow.png";
    icon.iconSize = new GSize(22.0, 36.0);
    icon.shadowSize = new GSize(41.0, 36.0);
    icon.iconAnchor = new GPoint(11.0, 18.0);
    icon.infoWindowAnchor = new GPoint(11.0, 18.0);
    return icon;
}