$(document).ready(function() {
  	
    $(".btn-slide").click(function(){
		$(".dropdown").slideToggle("fast");
		$(this).toggleClass("active"); 
		return false;
	});
	
	$('.dropdown a').each(function() {
    	$(this).click(function(){
    		$('.dropdown').removeClass('current');
    		$(this).parent().addClass('current');
			var url = $(this).attr('href');
			$('#faq-container').load(url);		 
			return false;
		});
	 });

	$('.dropdown a:first').click();
	
});// end:DOM ready
