$(document).ready(function(){
	$('span.digg').each(function(){
		$(this).after('<span><a href="http://digg.com/submit?phase=2&amp;url='+window.location+'&amp;title='+escape($('title').html())+'"><img src="/images/diggit.gif" alt="diggit"\/><\/a><\/span>');
		$(this).remove();
	});

  var $addys = [];
  $('.vcard .adr').each(function(  ) {
    $addys.push($(this).text().substr(9));
  });

  var $html = [];
  $('.vcard .description').each(function(  ) {
    $html.push
    (
        $(this).find('h3:first').text() + '<br />'
      + $(this).find('p.adr span.street-address:first').text() + '<br />'
      + $(this).find('p.adr span.locality:first').text() + ', '
      + $(this).find('p.adr abbr.region:first').text() + ' '
      + $(this).find('p.adr span.postal-code:first').text() + '<br /><br />'
      + $(this).find('p.tel').text()
    );
  });

  $('#gmaps, #usmap').googlemap({
		addresses:  $addys,
		html:       $html,
		controls:   true,
    latitude:   35.594864449999996,
    longitude:  -119.90776464999999
	});
});