jQuery.noConflict();
     
 // Put all your code in your document ready area
 jQuery(document).ready(function($){
	// Do jQuery stuff using $
	$('#faq div').hide();
	
	$('#faq span').click(function() {
		$(this).toggleClass('active')
		$(this).next().toggle(500);
		return false;
	}).next().hide();

   
 });
