		$(function() {
			$('a[href^=http]').click( function() {
				if ($(this).attr("href").indexOf('www.debtreductionservices.org')<0){
					window.open(this.href);
					return false;					
				}
					
			});
		});

    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();
            }
          }
        );
      }
    }
		