﻿function ShowMoreNewsItems()
{
    $("#morenewsbutton").hide();
    $("#newsloader").show();

   

   $.get("/Getters/News/GetNewsItems.aspx?top=" + $("#hidTop").val(), null, function (result)
   {
       $("div[anker=news]").html(result);

       SlideItDown("#divHiddenNews");
   });

}
function SetArchiveTop(theObj)
{


    if ($(theObj).attr("href").indexOf("&top") == -1)
    {
        

        $(theObj).attr("href",$(theObj).attr("href") + "&top=" + $("#hidTop").val());
    }
}
