$(document).ready(function() {
	//code boxes that load hidden
	$(".code-hide").hide();
	$("#code-toggle").toggle(function(){
		$(".code-hide").animate({ height: 'show' }, 'fast');
	   },function(){
		$(".code-hide").animate({ height: 'hide' }, 'fast');
	});

	//hide all comments on load (if no comment page was clicked)
	$(".hide-comments").hide();
	$("#comment-toggle").toggle(function(){
		$(".hide-comments").animate({ height: 'show' }, 'fast');
		$(".show-comments").animate({ height: 'hide' }, 'fast');
	},function(){
		$(".hide-comments").animate({ height: 'hide' }, 'fast');
		$(".show-comments").animate({ height: 'show' }, 'fast');
	});
});