var markerImage = [
"http://barmstedt.b2bmatchmaking.com/i/map/marker_gelb.png",
"http://barmstedt.b2bmatchmaking.com/i/map/marker_gruen.png",
"http://barmstedt.b2bmatchmaking.com/i/map/marker_blau.png",
"http://barmstedt.b2bmatchmaking.com/i/map/marker_rot.png",
"http://barmstedt.b2bmatchmaking.com/i/map/marker_hellgruen.png",
"http://barmstedt.b2bmatchmaking.com/i/map/marker_lila.png",
"http://barmstedt.b2bmatchmaking.com/i/map/marker_orange.png", ]
var yellowIcon = new GIcon();
yellowIcon.image = markerImage[0];
yellowIcon.iconSize = new GSize(20, 34);
yellowIcon.iconAnchor = new GPoint(9, 34);
var greenIcon = new GIcon();
greenIcon.image = markerImage[1];
greenIcon.iconSize = new GSize(20, 34);
greenIcon.iconAnchor = new GPoint(9, 34);
var blueIcon = new GIcon();
blueIcon.image = markerImage[2];
blueIcon.iconSize = new GSize(20, 34);
blueIcon.iconAnchor = new GPoint(9, 34);
var redIcon = new GIcon();
redIcon.image = markerImage[3];
redIcon.iconSize = new GSize(20, 34);
redIcon.iconAnchor = new GPoint(9, 34);
var green2Icon = new GIcon();
green2Icon.image = markerImage[4];
green2Icon.iconSize = new GSize(20, 34);
green2Icon.iconAnchor = new GPoint(9, 34);
var lilaIcon = new GIcon();
lilaIcon.image = markerImage[5];
lilaIcon.iconSize = new GSize(20, 34);
lilaIcon.iconAnchor = new GPoint(9, 34);
var orangeIcon = new GIcon();
orangeIcon.image = markerImage[6];
orangeIcon.iconSize = new GSize(20, 34);
orangeIcon.iconAnchor = new GPoint(9, 34);
function load_gmap() {
if (GBrowserIsCompatible())
{
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(53.9241926,9.5114047), 11);
map.addControl(new GSmallMapControl());
var point = new GLatLng(53.9241926,9.5114047);
//marker13 = new GMarker(point);
var html13 = '3base
400 Euro Tätigkeit meist Homeoffice
Typo 3 Entwickler Freelancer
Arbeitskräfte';
marker131 = new GMarker(point);
GEvent.addListener(marker131, "click", function() {
marker131.openInfoWindowHtml(html13,{maxWidth:100});
});
map.addOverlay(marker131);
var marker132 = new GMarker(marker131.getPoint(),{clickable:false, icon:lilaIcon});
map.addOverlay(marker132);
marker132.show();
var point = new GLatLng(53.9864911,9.4796457);
//marker15 = new GMarker(point);
var html15 = 'UNEM-Filmproduktion
Trainee oder Projekt-Mitarbeiter für alle Bereiche in der Filmproduktion
Praktikum';
marker151 = new GMarker(point);
GEvent.addListener(marker151, "click", function() {
marker151.openInfoWindowHtml(html15,{maxWidth:100});
});
map.addOverlay(marker151);
var marker152 = new GMarker(marker151.getPoint(),{clickable:false, icon:yellowIcon});
map.addOverlay(marker152);
marker152.show();
var point = new GLatLng(53.9282278,9.4988537);
//marker16 = new GMarker(point);
var html16 = 'Borba GmbH Viatec
Werksstudent-/in
Praktikum
Ausbildung zum/zur Zerspanungsmechaniker/-in (m/w)
Ausbildung';
marker161 = new GMarker(point);
GEvent.addListener(marker161, "click", function() {
marker161.openInfoWindowHtml(html16,{maxWidth:100});
});
map.addOverlay(marker161);
var marker162 = new GMarker(marker161.getPoint(),{clickable:false, icon:yellowIcon});
map.addOverlay(marker162);
marker162.show();
var point = new GLatLng(53.9231620,9.5197012);
//marker17 = new GMarker(point);
var html17 = 'Hellion Records
Kaufmann
Praktikum';
marker171 = new GMarker(point);
GEvent.addListener(marker171, "click", function() {
marker171.openInfoWindowHtml(html17,{maxWidth:100});
});
map.addOverlay(marker171);
var marker172 = new GMarker(marker171.getPoint(),{clickable:false, icon:yellowIcon});
map.addOverlay(marker172);
marker172.show();
}
}