$().ready(function() {
	$("a[id^='view_comments_']").click(function() {
		var blog_id = $(this).attr('id').substring(14, $(this).attr('id').length);
		var link_text = $(this).text() == 'View Comments' ? 'Hide Comments' : 'View Comments';
				
		$(this).text(link_text);
		$("#comments_" + blog_id).toggle();
	});
	
	$("a[id^='add_comment_']").click(function() {
		var blog_id = $(this).attr('id').substring(12, $(this).attr('id').length);
		
		$("#blog_id").val(blog_id);
	});
});

