$(function() {
	jQuery.event.add(window, "resize", resizeElements);
	resizeElements();
	roundLists();
	
	$('.link, .nav li').live('click', function() {
		var href = $(this).find('a').attr('href');
		if(href)
			document.location.href = href;
	});
});

function resizeElements() {
	$('.centerFront').css({
		'margin-top':($(window).height()-$('.centerFront').outerHeight())/2
	});
}

function roundLists() {
	$('.titledNav li:last').addClass('last');
}
