var customSettings = {
    tagCloudGradient: {
        topColor: '771514',
        bottomColor: 'A85F5E'
    }
    
};

/*
 *  Here, I want to do some things that apply to all WEEI pages.
 *  Note that each page has its own .js, but this one applies the common
 *  settings and common javascript.
 */
$(document).ready(function(){

		$("body[@id!=splash-page] #related-content-block ul li").slice(0,5).addClass("withDescription").find(".rss-description").show();
		$("body[@id!=splash-page] #related-content-block ul li:not(.withDescription)").find(".rss-title").before("&#8226;&nbsp;");

	});
