Thursday, January 3, 2013

UPDATE: North Little Rock tax district settlement | Arkansas Blog

UPDATE: North Little Rock tax district settlement

Posted by Max Brantley on Wed, Jan 2, 2013 at 12:01 PM

I mentioned earlier today that new North Little Rock Mayor Joe Smith had made news when he was sworn in yesterday by saying he intended to end a dispute with the North Little Rock School District over a tax increment finance district created by former Mayor Pat Hays to capture some school property taxes for downtown development projects. A parking deck for a new hotel was high on his wish list.

The TIF project was pushed through the City Council in the waning minutes of 2008 so as to get it on the books in time to capture the "increment" increase in property taxes on The Enclave, a new $30 million apartment project. The property went on the books as a completed project in 2009, after being taxed at its former mostly undeveloped rate. A lawsuit by the school district, joined by others, challenged procedures used to create the district by combining and expanding three existing districts by linking them via surface streets to reach the apartment project. The gerrymandered district was necessary to meet the required "contiguous" land requirement of Arkansas TIF law. The lawsuit has long looked like a winner, but Hays wouldn't let go, a factor in where some voters lined up in the recent mayoral election.

Smith brought in School Board President Scott Teague to participate in his inauguration and said he'd solve the issue, to widespread surprise, including on the part of other school board members. City Attorney Jason Carter tells me he talked to the mayor about the announcement this morning.

"The mayor expressed to me that he wants to end conflict with school district," Carter said. "I advised him the most direct course would be to repeal the project plan that diverts money to the TIF District and he directed me to begin work."

Carter said a proposal could be prepared for City Council consideration as early as next week. Plaintiffs in the lawsuit would have to sign off, though they'd undoubtedly not object to seeing a return of escrowed money to the schools and other taxing entities who's money has been escrowed.

There is a complication. In the course of the litigation, Carter has raised a question about how a recent School District vote to make all its millage available for dedication to bond issue repayment might affect another, unrelated TIF district in the Baring Cross area. As the law allows, school millage in excess of the 25-mill base state charge and money pledged to bonds has been diverted on increased property values in the district to infrastructure work. Carter's question is whether a change that makes all millage available for pledging to bonds puts that millage off-limits going forward to the existing TIF district. He said resolution of the pending lawsuit might have to leave that question open for guidance from the court, but that district has never been a source of controversy.

Tags: North Little Rock, Joe Smith, Jason Carter, tax increment finance district

Speaking of...

  • Morning roundup: Police overtime, peace in NLR, gun nuts

    January 2, 2013

    Some other items from a resumption of news after the long holiday: * EASE OFF THE FIRST AMENDMENT OR WE'LL KILL YOU: The New York newspaper that posted a map showing where pistol permit holders lived has hired armed security guards to protect its offices on account of "negative reactions" to the article. /more/
  • NLR chief's support for new mayor pays off

    December 30, 2012

    North Little Rock Police Chief Danny Bradley's televised endorsement of mayoral candidate Joe Smith has gotten the most tangible sort of reward from the incoming mayor ? a job. /more/
  • The Max Is Back Edition

    December 14, 2012

    The Connecticut school shooting, the fiscal cliff, House Speaker Davy Carter, the latest amendments to the Lake Maumelle watershed land-use ordinance, football comings and goings, Tim Griffin on Ways and Means, Kimbrell v. McClesky, Buddy Villines star-spangled Broadway Bridge, the UA advancement scandal and Joe Smith's election win ? all covered on this rapid-fire edition. /more/
  • North Little Rock precincts sharply divided over Mayor's race

    November 29, 2012

    North Little Rock school board member Scott Miller, a supporter of Tracy Steele, has an interesting breakdown on the runoff for mayor on his Facebook page. /more/
  • It's not over until Dogtown says it's over UPDATE

    November 7, 2012

    I've been remiss in not mentioning the big lingering local issue from the Tuesday election. /more/
  • The Sympathy for Loy Mauch Edition

    October 12, 2012

    The VP debate, more on Republican extremists, the racial undertones in mailers financed by the Koch brothers, the North Little Rock mayors race?all covered this week. /more/
  • Section of North Little Rock's Emerald Park closed

    October 8, 2012

    Some work underway in Emerald Park in North Little Rock, coming not long after controversy arose over sale of the former quarry below for apartment development, engendered some nervousness among blog readers. /more/
  • North Little Rock police endorse Steele for mayor

    October 5, 2012

    The North Little Rock Fraternal Order of Police has endorsed Tracy Steele for mayor of North Little Rock, to succeed retiring Pat Hays. /more/
  • More ?
'); } else if (jQuery(this).attr("id") == "sortSelect"){ jQuery("#BlogComments .sortSpinner").show(); } var url = "/ArkansasBlog/archives/2013/01/02/update-north-little-rock-tax-district-settlement"; var myStart = jQuery(this).attr("id") == "sortSelect" ? "1" : jQuery(this).attr("rel"); var showAllComments = jQuery(this).attr("id") == "showAllComments" ? "yes" : "no"; if (!myStart) var myStart = "1"; var mySort = jQuery("#sortSelect").val() || "asc"; var params = { sort: mySort, ajaxComponent: componentId, startIndex: myStart, showAll: showAllComments }; jQuery.ajax({ url: url, data: (params), success: function (data) { jQuery("#"+componentId+"_PaginationBottom").remove(); jQuery("#"+componentId+"_commentContent .brandNewComment").remove(); jQuery("#BlogComments .sortSpinner").hide(); if (myStart == "1") jQuery("#"+componentId+"_commentContent").html(data); else jQuery("#"+componentId+"_commentContent").append(data); } }); }; function removeEdit(oid){ if (oid){ var cont = jQuery("#BlogComments-comment-"+oid).closest(".brandNewComment"); cont.find(".newCommentOptions").fadeOut("fast", function(){ jQuery(this).remove(); }); } } function getComment(oid){ var url = "/ArkansasBlog/archives/2013/01/02/update-north-little-rock-tax-district-settlement"; if (oid){ var params = { ajaxComponent: componentId, commentOid: oid }; jQuery.ajax({ url: url, data: (params), success: function (data) { if (!jQuery.trim(jQuery("#"+componentId+"_commentContent").html())){ jQuery("#"+componentId+"_commentContent").append(data).find(".brandNewComment").fadeIn("fast"); } else { jQuery("#"+componentId+"_commentContent").children("div.comment, div.brandNewComment").filter(":last").after(data).parent().find(".brandNewComment").fadeIn("fast"); } var t=setTimeout(function(){removeEdit(oid)},300000); var myTotal = parseInt(jQuery("#comments_total").text(), 10); myTotal++; updateCommentTotals(false,myTotal); } }); } } function doLikeComment(e){ e.preventDefault(); if (!this.clicked){ var oid = jQuery(this).attr("data-commentOid"); jQuery("#BlogComments #"+oid+"_likeLinks a").addClass("dimmed").css("opacity","0.4").each(function(){this.clicked = true;}); var myCurrentLikes = jQuery("#"+oid+"_rating_likes").html() || 0; var myCurrentDislikes = jQuery("#"+oid+"_rating_dislikes").html() || 0; var thisRating = jQuery(this).attr("rel"); if (thisRating == "Like"){ myCurrentLikes = parseFloat(myCurrentLikes)+1; } else { myCurrentDislikes = parseFloat(myCurrentDislikes)+1; } var myNewLine = '' + myCurrentLikes + ' like'; if (myCurrentLikes != 1) { myNewLine += 's'; } myNewLine += ', ' + '' + myCurrentDislikes + ' dislike'; if (myCurrentDislikes != 1) { myNewLine += "s"; } jQuery("#"+oid+"_rating_sub").html(myNewLine); jQuery("#"+oid+"_rating_sub").show(); var params = { oid: oid, rating: thisRating }; jQuery.ajax({ url: "/gyrobase/Tools/AjaxLike", type: "POST", data: (params), success: function (data) { jQuery("#"+oid+"_rating_sub").html(data); if (thisRating == "Like"){ jQuery("#BlogComments #"+oid+"_likeLinks a.dislike").removeClass("dimmed").css("opacity","1").each(function(){this.clicked = false;}); } else { jQuery("#BlogComments #"+oid+"_likeLinks a.like").removeClass("dimmed").css("opacity","1").each(function(){this.clicked = false;}); } } }); } } function reportComment(e){ e.preventDefault(); e.stopPropagation(); var oid = jQuery(this).attr("rel"); var elem = jQuery("#"+oid+"_report"); elem.click(function(e){e.stopPropagation();}) if (!elem.is(":visible")){ jQuery("#BlogComments .reportCommentContainer").hide(); if (elem.is(":empty")){ var params = { oid: oid, ajaxComponent: "ReportComment" }; jQuery.ajax({ url: "/gyrobase/Tools/ReportComment", data: (params), success: function (data) { elem.html(data); elem.fadeIn("fast"); } }); } else { elem.fadeIn("fast"); } } // attach close event handler to the html jQuery("html").one("click", function(){ jQuery("#BlogComments .reportCommentContainer:visible").hide(); }); } function closeReport(obj){ jQuery(obj).closest(".reportCommentContainer").fadeOut("fast"); } function submitReport(e){ var params = jQuery(e).closest("form").serialize()+"&ajaxComponent=ReportComment"; jQuery.ajax({ url: "/gyrobase/Tools/ReportComment", type: "POST", data: (params), success: function (data) { jQuery(e).closest(".reportCommentContainer").html(data); } }); } (function($) { var subscribed=false; function showFollowPanel(e){ e.preventDefault(); myPanel = $(this).parent().next(".togglePanel"); myPanel.fadeIn("fast"); } function doSubscribe(obj){ var myPanel = obj.parent().next(".togglePanel"); myPanel.fadeIn("fast"); if (!subscribed){ var myLink = obj.parent(); var myLoader = myPanel.children(".loading"); var myUpdater = myPanel.children(".ajaxUpdater"); var params = { object: myPanel.attr("data-toolsoid"), macro: myPanel.attr("data-toolsajaxmacro"), url: window.location }; $.ajax({ url: "/gyrobase/Macros/ToolsAjax", data: (params), type: "POST", dataType: "html", success: function (data) { subscribed = true; if (myUpdater){ myUpdater.html(data); myLoader.fadeOut("fast", function(){ myUpdater.fadeIn("fast", function(){ setTimeout(function(){ myPanel.fadeOut("fast"); }, 3000); }); }); } else { myPanel.fadeOut("fast"); } } }); } } function activateSubscribe(e){ e.preventDefault(); var myObj = $(this); var isAuthenticated = Foundation.SessionManager.sharedSessionManager().isAuthenticated(); if (!isAuthenticated){ new Foundation.Login.Dialog({ "feelingShy": false, "callback": function(){doSubscribe(myObj);} }); return false; } else { // Proceed doSubscribe(myObj); } } function deleteComment(e){ e.preventDefault(); var thisComment = $(this); var params = { macro: "deleteComment", comment: thisComment.attr("data-comment") }; $.ajax({ url: "/gyrobase/Macros/ToolsAjax", data: (params), type: "POST", dataType: "html", success: function (data) { thisComment.closest(".brandNewComment").fadeOut("fast", function(){ $(this).remove(); var myTotal = parseInt(jQuery("#comments_total").text(), 10); myTotal--;console.log(myTotal); updateCommentTotals(false,myTotal); }); } }); } function editComment(e){ e.preventDefault(); var thisComment = $(this); var commentCont = thisComment.closest(".brandNewComment").find(".description"); var commentTemp = thisComment.closest(".brandNewComment").find(".commentTemp"); var commentText = commentTemp.html(); var toolbar = thisComment.closest(".brandNewComment").find(".commentToolbar"); commentCont.next(".commentEditCont").remove(); commentCont.after(''); toolbar.fadeOut("fast"); commentCont.fadeOut("fast", function(){ commentCont.next(".commentEditCont").fadeIn("fast"); }); $(".brandNewComment textarea.expandableBox").autoBoxResize(); } function editCommentSave(e){ e.preventDefault(); var thisComment = $(this); var editCont = thisComment.closest(".commentEditCont"); var commentTemp = thisComment.closest(".brandNewComment").find(".commentTemp"); var newText = thisComment.prevAll("textarea").val(); var toolbar = thisComment.closest(".brandNewComment").find(".commentToolbar"); var params = { macro: "editComment", comment: thisComment.attr("data-comment"), commentText: newText }; $.ajax({ url: "/gyrobase/Macros/ToolsAjax", data: (params), type: "POST", dataType: "html", success: function (data) { editCont.fadeOut("fast", function(){ editCont.prev(".description").html($.trim(data)); commentTemp.html(newText); editCont.prev(".description").fadeIn("fast"); toolbar.fadeIn("fast"); }); } }); } function editCommentCancel(e){ e.preventDefault(); var editCont = $(this).closest(".commentEditCont"); var toolbar = $(this).closest(".brandNewComment").find(".commentToolbar"); editCont.fadeOut("fast", function(){ editCont.prev(".description").fadeIn("fast"); toolbar.fadeIn("fast"); editCont.remove(); }); } $("#BlogComments").on('click', ".bottomOptionBar a#doSubscribe", activateSubscribe); $("#BlogComments").on('click', ".bottomOptionBar a.togglePanelClose", function(){$(this).parent().fadeOut("fast"); return false;}); $("#BlogComments").on('click', ".brandNewComment a.commentDeleteLink", deleteComment); $("#BlogComments").on('click', ".brandNewComment a.commentEditLink", editComment); $("#BlogComments").on('click', ".brandNewComment a.doneEditLink", editCommentSave); $("#BlogComments").on('click', ".brandNewComment a.cancelEditLink", editCommentCancel); })(jQuery); jQuery(document).ready(function($){ $("#BlogComments").on('click', '#showMoreComments,#showAllComments', getMoreComments); $("#BlogComments #sortSelect").change(getMoreComments); getMoreComments(); new Foundation.PostCommentComponent(componentId); var nc = Foundation.NotificationCenter.sharedNotificationCenter(); nc.observe("comment:added", function (e) { var comment = e.data; getComment(comment.get("oid")); // clear rating if (jQuery(".commentFormRating").length!=0){ jQuery(".commentFormRating input[name='reviewRating']").val(""); jQuery(".commentFormRating .goldStarContainer").css("left", zeroPos+"px"); } }); var subscribeCheckBox = $("#BlogComments_commentSubscribe"); subscribeCheckBox.prop("checked", getCookie("subscribeToThread") === "true" ? true : false); subscribeCheckBox.change(function (e) { var subscribeToThread = $(this).prop("checked"); setCookie("subscribeToThread", subscribeToThread ? "true" : "false", 30); }); var shareFacebookBox = $("#BlogComments_postCommentToFacebook"); shareFacebookBox.prop("checked", getCookie("shareOnFacebook") === "true" ? true : false); shareFacebookBox.change(function (e) { var shareOnFacebook = $(this).prop("checked"); setCookie("shareOnFacebook", shareOnFacebook ? "true" : "false", 30); }); $("#BlogComments").on('click', 'a.likeLink', doLikeComment); $("#BlogComments").on('click', 'a.reportCommentLink', reportComment); });

Source: http://www.arktimes.com/ArkansasBlog/archives/2013/01/02/update-north-little-rock-tax-district-settlement

j lo j lo sacha baron cohen ryan seacrest octavia spencer meryl streep oscars school shooting ohio billy crystal

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.