// cdp.js

$(document).ready( function() {
	participating_states_init();
	try
	{
		banner_init();
	} catch(err)
	{
		// not on homepage
	}
	
	$("div.testimonials blockquote").next("p").addClass("testimonial-credit");
	
	$("div.category-news div.entry p:has(img), div.category-newsroom div.entry p:has(img)").addClass("clearfix");
	
	// push featured news entry text over if entry contains <a><img /></a>
	$("div.news-entry a").nextAll("p").css("margin-left", "115px");
	
	
	$(".home-news-story a img").bind("load", function() {												  
		$(".home-news-story a").remove();
	});
	
});
