//     jQuery.noConflict();

     // Put all your code in your document ready area

     jQuery(document).ready(function($){

     // Do jQuery stuff using $ this where the functions need to go   


$(document).ready(function(){

	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	$(".btn-slide2").click(function(){
		$("#panel2").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	$(".btn-slide3").click(function(){
		$("#panel2").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	 
});
 // ======================= BULLETPOINT TOOGLE =========================

	$("div#view_more_bullets").hide(); 

	$("a.view_more_link").click(function () {
		$("div#view_more_bullets").slideToggle('1000', function() {
		// Animation complete.
	  });
	});  
						   
	
		   
   });