jQuery.noConflict();
(function($) {
	$(document).ready(function() {
		if (window.location.hash == '#view-comments') {
			$('#project .comments').show();
			window.location.hash = '#view-comments';
		}
		$('.toggle').click(function() {
			$('#project .comments').slideDown('slow');
			return false;
		});
	});
})(jQuery);