$(document).ready(function(){
	$("#add_comment_lnk").click(function(){
		if($('#listing_comment_form').length){
			scrollTo('#listing_comment_form');
		} else {
			scrollTo('#comment_form');
		}
		if($('#id_comment').length){
			$('#id_comment').focus();
		}
		return false;
	});
});
