jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery('#left-col p.question').click(function() {
		var id = jQuery(this).attr('id').replace('question-','');
		
		jQuery('p#answer-'+id+'').slideToggle(200);
		
		return false;
	});
});	