$(document).ready(function() {
	$("#navi > ul > li").mouseover(function() {
		if($(this).attr('class') != 'active'){
			$(this).children("ul").css('display', 'block');
			$(this).children("a").addClass('hover');
		}
	}).mouseout(function() {
		if($(this).attr('class') != 'active'){
			$(this).children("ul").css('display', 'none');
			$(this).children("a").removeClass('hover');
		}
	});
	
	// - - - - - - - galerie $('#myDiv')[0]
	if($("#slider")[0]){
		$("#slider").easySlider();
		$('.info_0').css('display', 'block');
	}
	
	// - - - - - - - anfahrt
	$('.clickme').click(function(){
		var id = $(this).attr('rel');
		//$('#weg'+id).css('display', 'block');
		//$(this).addClass('opened');
		$('#weg'+id).toggleClass('opened');
		$(this).toggleClass('opened');
	});
});

var map;
var geocoder;

function initializeGMap() {
	//if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map_canvas"));
		map.addControl(new GSmallZoomControl3D());
		
		map.setCenter(new GLatLng(51.458435, 7.010909), 17);
		
		var html = "<b>Der Löwe - Ein Stück Bayern für alle</b><br />";
		html += "Kopstadtplatz 13<br />";
		html += "45127 Essen<br /><br />";
		html += "Tel.: +49(0)201 - 43 98 798<br />";
		map.openInfoWindowHtml(map.getCenter(),html);
		
		map.setMapType(G_HYBRID_MAP);
}
