/**
 * @author abhaga
 */
if (Drupal.jsEnabled) {
	$(document).ready(function(){
		$('#reviewForm .error').each(function(){
			$('#reviewForm').show();
			$('div.messages').hide();
			location.href = '#reviews';
		});
		$('#addReview,#addReviewTitle').click( function(){
			$('#reviewForm').toggle();
		});
	});
}