/* Karte klein */
$(function() {
$('#map_canvas').gmap({'center': '46.7058166,17.398714', 'zoom': 12, 'callback': function() {
var self = this;
self.addMarker({'icon':'layout/pin_classic_orange-1.png', 'position': '47.502359,19.035187'})
.click(function() {window.location='budapest_sehenswertes.shtml';});
self.addMarker({'icon':'layout/pin_classic_orange-2.png', 'position': '47.50004,19.04271'})
.click(function() {window.location='budapest_sehenswertes.shtml';});
self.addMarker({'icon':'layout/pin_classic_orange-3.png', 'position': '47.527199,19.048362'}).click(function() {
window.location='budapest_sehenswertes.shtml';});
self.addMarker({'icon':'layout/pin_classic_orange-4.png', 'position': '47.514954,19.081643'}).click(function() {
window.location='budapest_sehenswertes.shtml';});
self.addMarker({'icon':'layout/pin_classic_orange-5.png', 'position': '47.513578,19.090848'}).click(function() {
window.location='budapest_sehenswertes.shtml';});
self.addMarker({'icon':'layout/pin_classic_orange-6.png', 'position': '47.507055,19.045336'}).click(function() {
window.location='budapest_sehenswertes.shtml';});
}});
});
/* Karte gross */
$(document).ready(function() {
$("#getMapZoom").click(function(){
$("#map_outliner").show();
$("#map_zoom").fadeIn('slow');
$('#map_big').gmap({'center': '46.7058166,17.398714', 'zoom': 13, 'callback': function() {
var self = this;
self.addMarker({'icon':'layout/pin_classic_orange-1.png', 'position': '47.502359,19.035187'}).click(function() {
self.openInfoWindow({ 'content': 'Szenth�roms�g t�r 5,
1014 Budapest
'}, this);});
self.addMarker({'icon':'layout/pin_classic_orange-2.png', 'position': '47.498778,19.04377'}).click(function() {
self.openInfoWindow({ 'content': 'L�nchid,
1011 Budapest'}, this);});
self.addMarker({'icon':'layout/pin_classic_orange-3.png', 'position': '47.527199,19.048362'}).click(function() {
self.openInfoWindow({ 'content': 'Margitsziget,
1030 Budapest'}, this);});
self.addMarker({'icon':'layout/pin_classic_orange-4.png', 'position': '47.514954,19.081643'}).click(function() {
self.openInfoWindow({ 'content': ' Hos�k tere,
1046 Budapest'}, this);});
self.addMarker({'icon':'layout/pin_classic_orange-5.png', 'position': '47.513578,19.090848'}).click(function() {
self.openInfoWindow({ 'content': 'Pa�l L�szl� utca,
1040 Budapest'}, this);});
self.addMarker({'icon':'layout/pin_classic_orange-6.png', 'position': '47.507055,19.045336'}).click(function() {
self.openInfoWindow({ 'content': 'Kossuth Lajos t�r 1-3,
1055 Budapest
Tel.: +36 1 441 4000'}, this);});
}});
});
});
/* umgebender div zum schliessen */
jQuery("#map_outliner").click(function(){
$("#map_zoom").fadeOut('slow');
$("#map_outliner").hide();
});