$(document).ready(function(){
	$('ul.auxNav li:first').addClass('noAuxBorder');
	$('#contactInfoSide h2:first').addClass('noTop');
	$('#advertisingInfoSide h2:first').addClass('noTop');
	//$('.homeFeature img').hover(function(){$('h3:first').addClass('noTop');$('h3:first').removeClass('noTop');});
	$('.homeFeature img').hover(
				function () {
					  $('h3 a:first').addClass('hover');
					  },
				function () {
					$('h3 a:first').removeClass('hover');
			}
);
	
	$("body.advertising table").each(function(){
		$("tr:odd", this).not(".darkRow").addClass("lightRow");
		$("tr:even", this).not(".lightRow").addClass("darkRow");
	});
	
	//$('body.advertising tbody tr:odd').addClass('lightRow');
	//$('body.advertising tbody tr:even').addClass('darkRow');
	
	//$("p").remove(":contains('Comments on this entry are closed.')");
	
	var heading1 = $("ul#monthlySubCatList_A span:first").text();
    $("h4#monthlySubCat_A").html(heading1);
	
	var heading2 = $("ul#monthlySubCatList_B span:first").text();
    $("h4#monthlySubCat_B").html(heading2);
	
	var heading3 = $("ul#monthlySubCatList_C span:first").text();
    $("h4#monthlySubCat_C").html(heading3);
	
	$("a.podcastOpen").click(function() {
		$('#podcastWrapper').fadeIn();
	});
	
	$("a.podcastClose").click(function() {
		$('#podcastWrapper').fadeOut();
	});
	
$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs("div.panes > div");
});

$("div.businessWrapper").each(function(){
		$("p:odd", this).addClass("dark");
	});

});
