$(document).ready( function() {
	$('.main-slideshow,.company-slideshow .photo').innerfade({
		animationtype: 'fade',
		speed: 3500,
		timeout: 7250,
		type: 'sequence',
		containerheight: '300px'
	});
	$('.column').each( function() {
		$(this).find('*:first').addClass('first');
		if($('.column').index(this)<1) {
			if($(this).find('.washington:first-child').height()<40) {
				$('.column:gt(0)').addClass('push-1');
			} else {
				$('.column:gt(0)').addClass('push-2');
			}
		}
	});
	$('.column:gt(0) :first-child').each( function() {
		if($(this).is('.washington')) {
			$('.column').removeClass('push-1').removeClass('push-2');
		}
	});
});
