$(document).ready(function() {
	$(window).resize(function() {
		if ($(window).height()>$('#wrapper').height()) $('#wrapper').css('margin-top', parseInt(($(window).height()-$('#wrapper').height())/2)+'px');
	}).trigger('resize');
	$('#nav a').click(function() {
		if ($(this).attr('href')=='') {
			$('ul', $(this).parent('li')).slideDown('slow');
			return false;
		}
	});
});

