				$(function(){
			$('.toggle').click(function(){
				$(this).closest('.question')
						.find('.content')
				 		.slideToggle('fast');
	 				return false; 
			});
		});		
		
		$(document).ready(function() {
			$(".email").defuscate(); 
 		});


    var map = null;
    var geocoder = null;

    function initialize(address) {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map-block"));
         geocoder = new GClientGeocoder();
		 showAddress(address);
      }
    }

    function showAddress(address,text) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
	          map.setUIToDefault();
            }
          }
        );
      }
    }

