$(document).ready(function(){

	
	$('a.expand').click(function(){
		if(!$(this).hasClass('open')){
			var pathname = window.location.pathname;
			$('a.expand').removeClass('open');
			$(this).addClass('open');
			$(this).attr('href',pathname+'#');
			$('ul.nav4').slideUp('slow');
			$(this).next('ul.nav4').slideDown('slow');
			return;
		}else{
			var pathname = window.location.pathname;
			$(this).attr('href',pathname+'#');
			$(this).removeClass('open');
			$('ul.nav4').slideUp('slow');
			return;
		}
	});

	$('.news-single-img').cycle({ 
		fx:    'fade', 
		speed:  1500 
	 });
	 
	// Google Map identifizieren
	var map = new GMap2(document.getElementById('map'));
	var dcenter = new GLatLng(48.874956,9.392409);
	var traffichome = new GLatLng(48.874956,9.392409);
	// Bedienelemente für Zoom und Pan anzeigen
	map.addControl(new GSmallMapControl());
	map.addControl(new GMenuMapTypeControl());
	// Markierung hineinpieksen
	var marker = new GMarker(traffichome)
	map.addOverlay(marker);
	marker.openInfoWindowHtml('<span style="text-align:left;"><b>Traffic</b><br />Agentur f&uuml;r Werbung / Kommunikation & Design<br />Waiblinger Str. 32 -34<br /> 71364 Winnenden<br />');
	map.setCenter(dcenter, 8);
	

	
});
