// GOOGLE MAPS

function initialize() {
	var latlng = new google.maps.LatLng(51.73168644, 10.61284661);
	var settings = {
		zoom: 15,
		center: latlng,
		mapTypeControl: true,
		mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
		navigationControl: true,
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
	var companyLogo = new google.maps.MarkerImage('images/logo_gmaps.png',
	new google.maps.Size(71,90),
	new google.maps.Point(0,0),
	new google.maps.Point(40,90)
	);
	var companyShadow = new google.maps.MarkerImage('images/logo_gmaps_schatten.png',
		new google.maps.Size(84,64),
		new google.maps.Point(0,0),
		new google.maps.Point(23, 65)
	);
	var companyPos = new google.maps.LatLng(51.73168644, 10.61284661);
	var companyMarker = new google.maps.Marker({
		position: companyPos,
		map: map,
		icon: companyLogo,
		shadow: companyShadow,
		title:"Bikepark Braunlage am Wurmberg",
	});
}


// PRETTY PHOTO
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
});


// CUFON (UEBERSCHRIFTEN)
Cufon.replace('h1');

