	jQuery(document).ready(function(){
	topo = (jQuery(document).height() - 300) / 2;
	if(topo > 0) {
		topo += "px";
		jQuery("#navigation").animate({top: topo}, 800);
	}
	
	jQuery(window).bind('resize', function() {
		topo = (jQuery(document).height() - 300) / 2;
		if(topo > 0) {
			topo += "px";
			jQuery("#navigation").animate({top: topo}, 800);
		}
	});
	});
	jQuery.noConflict();

