function adjustSize() {
	h = $(window).innerHeight();
	w = $(window).innerWidth();
	
	ch = $('#container').height();
	
	if (ch < h) {
		m = (h - ch) / 2;
		m = m + 'px';
	}
	else {
		m = '0px';
	}
	
	$('#container').css('margin-top', m);
}

$(document).ready(function(){	
	
	adjustSize();
	
	$(window).resize(function(){ adjustSize(); });
	
	$('#intro-profile').hide().fadeIn(2500);
	
	$('.rotation').innerfade({ speed: 1500, timeout: 3500, type: 'sequence', containerheight: '350px' });
	
	$('#press').jCarouselLite({
	    btnNext: "#press-nav .next",
	    btnPrev: "#press-nav .prev",
		speed: 800,
		scroll: 3,
		visible: 3
	});
	
	$('#press A').attr('class','thickbox');
});
