var lat = 54.355168;
var lng = 18.594389;
var zoom = 8;

function loadScript(){
	var script = document.createElement("script");
	script.type = "text/javascript";
	script.src = "http://maps.google.com/maps/api/js?sensor=true&callback=initialize&language=pl";
	document.body.appendChild(script);
}

function initialize() {
	var latlng = new google.maps.LatLng(lat,lng);
	var myOptions = {
		zoom: zoom,
		center: latlng,
		mapTypeControl: true,
		mapTypeControlOptions: {
			style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
			position: google.maps.ControlPosition.TOP_RIGHT
		},
		scaleControl: true,
		scrollwheel: false,
		navigationControl: true,
		navigationControlOptions: {
			style: google.maps.NavigationControlStyle.LARGE
		},
		mapTypeId: google.maps.MapTypeId.ROADMAP
	};

	map = new google.maps.Map(document.getElementById("oGoogleMap"),myOptions);

	var image = new google.maps.MarkerImage('/img/marker_arrow.png',new google.maps.Size(24, 34),new google.maps.Point(0,0),new google.maps.Point(24, 34));
	var shadow = new google.maps.MarkerImage('/img/marker_arrow_shadow.png',
		new google.maps.Size(39,34),
		new google.maps.Point(0,0),
		new google.maps.Point(24,34)
		);

	var marker = new google.maps.Marker({
		position: latlng,
		draggable: false,
		animation: google.maps.Animation.DROP,
		map: map,
		shadow: shadow,
		icon: image,
		title:"eCreative Poland / Kreatywne rozwiązania w IT"
	});

	google.maps.event.addListener(marker, 'click', function(){
		window.location.href='http://www.maperia.pl/mapa/#type/m/zoom/15/geo/54.35518702616,18.59465003014';
	});

}

