/**
 * @author jontj1
 */
	var blogCommentDiv = document.getElementById('addBlogComment');
	
	$(document).ready(function () {
		$('a.blogCommentDropDownTrigger').click(function () {
			$('div#addBlogComment').slideToggle('medium');
		})
	})
