(function($){
	$.fn.equalHeights = function(minHeight, maxHeight) {
		tallest = (minHeight) ? minHeight : 0;
		this.each(function() {
			if($(this).height() > tallest) tallest = $(this).height();
		});
		if((maxHeight) && tallest > maxHeight) tallest = maxHeight;
		return this.each(function() {
			$(this).height(tallest).css("overflow","none");
		});
	}
	Cufon.replace('#nav a', { fontFamily: 'Trajan-Regular',hover:true });
	Cufon.replace('span.title,h2', 'Trajan-Regular');
	$('.gallery a').lightBox();
	$(".tweet").tweet({
		username: "galenbehr",
		count: 5
    });
	$(".smalltweet").tweet({
		username: "galenbehr",
		count: 2
    });

})(jQuery)
