jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("#what").click(function () {
		jQuery("#whattext").slideToggle("slow");
	});
});