
$(document).ready(function(){

	$('.kd_plus_minus a img').click(function(e){
	//	$('~.kd_answer', $(this).parents('.kd_question')[0]).eq(0).slideToggle();
		var target = $(this).parents().parents().parents().siblings('.kd_answer');
		target.animate({height: 'toggle', opacity: '1'}, 100);
		$(this).attr("src") == '/SiteCollectionImages/ImageRepository/KD/images/minus.png' ? $(this).attr('src','/SiteCollectionImages/ImageRepository/KD/images/plus.png') : $(this).attr('src','/SiteCollectionImages/ImageRepository/KD/images/minus.png');
		e.preventDefault();
	});

});
