﻿$(function() {

    $('.about-links .slm-layout-main .link-item:first').addClass('first');
    $('.about-links .slm-layout-main .link-item:last').addClass('last');
    $('.related-links .slm-layout-main .link-item:last').addClass('last');

    if ((document.location.pathname.indexOf("News.aspx") > -1) && ($("#cbqwp ul.newsevents").length == 0)) {
        $("#cbqwp td").html("<h2>Sorry, no news for this month</h2>");
    }
    
    if ((document.location.pathname.indexOf("Events.aspx") > -1) && ($("#cbqwp ul.newsevents").length == 0)) {
        $("#cbqwp td").html("<h2>Sorry, no events scheduled for this month</h2>");
    }

    if ((document.location.pathname.indexOf("Campaigns.aspx") > -1) && ($("#cbqwp ul.newsevents").length == 0)) {
        $("#cbqwp td").html("<h2>Sorry, no campaigns currently running</h2>");
    }


});