﻿$(document).ready(function(){
    $("dd").hide(); 
    
    if ($.browser.msie && parseFloat($.browser.version) < 7) { 
		try {
			$('#questions, #answers, #comm_questions, #comm_answers').css('margin', '5px 7px 5px 7px');
			$('#comm_questions, #comm_answers').css('margin', '5px 5px 5px 5px');
		} catch(ex){}
	}
    
    $("dt").click(function(e){
        e.stopPropagation();
        e.preventDefault();
        txt = $(this).next().html();
        //reset to black
        $(".jquery_questions dt a").each(function(){
            $(this).css('color', '#000');
        });     
        //set this to orange
        $(this).children().eq(0).css('color', '#FF9900');
        $("#answers_txt").empty();
        $("#answers_txt").append(txt);
    });
});
