/**
* Initialize the map.
*
* @param	float		Latitude
* @param	float		Longitude
*/
function initializeMap(latitude, longitude) {
   jQuery('#flashheader_wrap').css('display','none');
   jQuery('#gmap').css('display', 'block');
	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(latitude,longitude), 15);
	map.addOverlay(new GMarker(new GPoint(longitude,latitude)));
	map.setUIToDefault();
	
	}

/**
* Hide the map.
*
*/
function hideMap() {
	jQuery('#gmap').css('display', 'none');
	jQuery('#flashheader_wrap').css('display','block');
	}


/*************************************************************
* Eventcalendar 
*
************************************************************/
/**
* Toggle the calendar
*
* @param	String		ID of the table to toggle.
* @return
*/
function toggleCalendar(num) {
 var test = $(num +':hidden');
  var text = "";
  if (test.length == 1) {
      text = "Schlie&szlig;en";
      jQuery(num).css('display','block').siblings('.tx-eventcalendar-pi1-headline').children('.tx-eventcalendar-pi1-button').children('button').html(text).css('background', 'white url(http://www.neue-stimmen.de/fileadmin/templates/itao/Enhancement/images/arrow_down.gif) no-repeat scroll right center');         
   } else { 
    text = "&Ouml;ffnen";
    jQuery(num).css('display','none').siblings('.tx-eventcalendar-pi1-headline').children('.tx-eventcalendar-pi1-button').children('button').html(text).css('background', 'white url(http://www.neue-stimmen.de/fileadmin/templates/itao/Enhancement/images/arrow_right.gif) no-repeat scroll right center');
    }
   return false;
}
