jQuery.noConflict();
jQuery(document).ready(function() {
	
	jQuery("#jsInstruct").show();
	jQuery(".question").next().hide();
	
	//jQuery(".question > a").click(function () { 
    //  jQuery(this).parent().next().toggle();
	//  jQuery(this).parent().next().css( {marginLeft: "30px", marginRight: "50px", paddingTop: "8px", backgroundColor: '#E3DCC4'});

    //});
	

			jQuery(".question > a").click(function(){
				jQuery(".open").removeClass("open");
				jQuery(this).addClass('open');
				jQuery(this).parent().next().show();
				jQuery(this).parent().next().css( {marginLeft: "30px", marginRight: "50px", paddingTop: "8px", backgroundColor: '#E3DCC4'});
				jQuery(".question > a:not(.open)").parent().next().hide();

				return false;
			});
	
});