
/*
window.onresize = position;
window.onload = position;
*/
function position(){
	$('#content').position({
		of: $('body'),
		my: 'center top',
		at: 'center top',
	});
}

$(function(){
	$('.menuitem').mouseover(function(){
		$(this).addClass('over');	
	});
	$('.menuitem').mouseout(function(){
		$(this).removeClass('over');	
	});
});
