$(document).ready(function(){
	$("#press dt").click(function(){
		var target = $(this).next('dd');
		$("#press dd:visible").not(target).each(function(){
			$(this).prev().find("span img").attr("src", $(this).prev().find("span img").attr("src").replace("_on", ""));
			$(this).slideUp();
		});
		if (target.is(":hidden")) {
			$(this).find("span img").attr("src", $(this).find("span img").attr("src").replace("_on", "").replace(".jpg", "_on.jpg"));
		}else{
			$(this).find("span img").attr("src", $(this).find("span img").attr("src").replace("_on", ""));
		}
		target.slideToggle();
	});
	$("#press dt.featured:first").click();
});
