$(document).ready(function(){
			
		var options = {
			//zoomType: "reverse",
			zoomWidth: 150,
			zoomHeight: 165,
			xOffset: 0,
            yOffset: 5,
			title: false,
            position: 'right' //and MORE OPTIONS
		};

		$('.jQZoom').jqzoom(options);
		
		$("#commentButton").click(function () {
			$("#commentForm").slideDown("normal");
		});
		
		$("#warning").click(function () {
			$("#reverse").slideDown("normal");
			$("#warning").hide();
		});

});