$(document).ready(function () {

	/* ********************************************************************* */
	// Text replacement
        Cufon.replace('h1');
        Cufon.replace('.bigger');
        Cufon.replace('.cufon');

        $('a.new_window').attr("target", "_blank");
        $("a[rel='lightbox']").colorbox({transition:"fade"});
});


jQuery.fn.extend({
  scrollTo : function(speed, easing) {
    return this.each(function() {
      var targetOffset = $(this).offset().top;
      $('html,body').animate({scrollTop: targetOffset}, speed, easing);
    });
  }
});

