
Cufon.replace('h1');

$(function(){

// add 'powered by peak' swf
//swfobject.embedSWF('/img/peak/powered_by_peak.swf', 'poweredByPeak', '178', '45', '9.0.0');

// convert emails from form like <span class="email">someone at somedomain dot com</span>
$('span.email').each(function(){
 var email = $(this).html();
  var match = email.match(/(\w+)\sat\s(\w+)\sdot\s(\w+)/);
   if (match && match[1] && match[2] && match[3]){
    email = match[1] + '@' + match[2] + '.' + match[3];
   $(this).html('<a href="mailto:' + email + '">' + email + '</a>');
  }
 });

// make external links open in new window
$('a[href^="http"]').click(function(e){
 window.open($(this).attr('href'));
 e.preventDefault();
});

// lightbox
$('.lightbox a').lightBox({fixedNavigation:true});

});
