jQuery(document).ready(function() {
	var originalHeight = jQuery("#main_content").css('height');
	jQuery("#main_content").css({'height' : '100px'});
	jQuery("a.top").css({'display': 'none'});
	
	jQuery("a.more").click(function(){
		jQuery("#main_content").animate({ 
			height: originalHeight
		}, 1500 );
		jQuery(this).hide();
		jQuery("a.top").css({'display': 'block'});
		return false;
	});
	jQuery("a.top").click(function(){
		jQuery("#main_content").animate({ 
			height: "100px"
		}, 1500 );
		jQuery(this).hide();
		jQuery("a.more").css({'display': 'block'});
		return false;
	});
});
