var infoBulle = new google.maps.InfoWindow();
var marqueur = new Array();
var bounds = new google.maps.LatLngBounds();

var map;

function createMarker(my_map, my_position, contenu_html, type_icon, index_gg) {
	var marker = new google.maps.Marker({ position: my_position, map: my_map, icon: type_icon });

	if(contenu_html!=""){
		google.maps.event.addListener(marker, 'click', function() { infoBulle.setContent(contenu_html); infoBulle.open(my_map, marker) } );
	}

	return marker;
}

function createMarker2(my_map, my_position, contenu_html, type_icon, index_gg) {
	var marker = new google.maps.Marker({ position: my_position, map: my_map, icon: type_icon });

	if(contenu_html!=""){
		google.maps.event.addListener(marker, 'click', function() { infoBulle.setContent(contenu_html); infoBulle.open(my_map, marker) } );
	}

	return marker;
}

function affiche_marker(my_marker){
	google.maps.event.trigger(marqueur[my_marker], 'click');
}

var icon_main = new google.maps.MarkerImage('http://www.stations-de-ski.com/lib/push1.png', new google.maps.Size(25, 36), new google.maps.Point(0,0), new google.maps.Point(12, 36));

var icon_num = [];
for(var i=1; i<=50; i++){
	icon_num[i] = new google.maps.MarkerImage('http://www.stations-de-ski.com/lib/num_push/push_' + i + '.png', new google.maps.Size(25, 36), new google.maps.Point(0,0), new google.maps.Point(12, 36));
}

var icon_simple1 = new google.maps.MarkerImage('http://www.stations-de-ski.com/lib/push1_mini.png', new google.maps.Size(17, 17), new google.maps.Point(0,0), new google.maps.Point(8, 8));

var icon_simple2 = new google.maps.MarkerImage('http://www.stations-de-ski.com/lib/push2_mini.png', new google.maps.Size(17, 17), new google.maps.Point(0,0), new google.maps.Point(8, 8));
