$(document).ready(function(){
	$(".infoList dt").click(function(){
		var target = $(this).next('dd');
		$(".infoList 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(".png", "_on.png"));
		}else{
			$(this).find("span img").attr("src", $(this).find("span img").attr("src").replace("_on", ""));
		}
		target.slideToggle();
	});
	$(".infoList dt.featured:first").click();
});
