﻿$(document).ready(function($){

    // set up the rss news box
    $("#RssBox").html('<img src="images/ajax-loader.gif" alt="" />');

    // determine the number of rss news items to load
    var rss_query = "";
    if (location.pathname.indexOf("lpc.aspx") > -1)
    {
        rss_query = "?ItemCount=10";
    }
    else if (location.pathname.indexOf("markit.aspx") > -1)
    {
        rss_query = "?ItemCount=3";
    }
    
    // load the content of the rss feeds
    $("#RssBox").load("rssbox.aspx" + rss_query, {}, 
        function (responseText, textStatus, XMLHttpRequest) {
        }
    );

});
