$(function(){
	
	if ($(window).width() > 900) {
		
		$('.intro').equalHeightColumns();
		$('#nav').BalloonAnim( { triggers : $('#nav li a, #nav-home'), target : $('#balloon-anim') } );
		
		$(window).resize(function() {
			
			$('.intro').css('height', 'auto');
			
			if ($(window).width() > 900) {
				$('.intro').equalHeightColumns();
			}
			
		});
		
	}
	
});

























