﻿(function($){
	$.cur = null;
	$.fn.slideContext=function() {
		$(this).click(function() {
			if($.cur != this) 
			{
				$(this).next().slideDown();
				$(this).siblings("dt").next().slideUp(); 
				$(this).siblings("dt").css("background-color","#efefef");
				$(this).css("background-color","#ccc");
				$.cur=this;
			}
			else 
			{
				$(this).next().slideUp();
				$(this).css("background-color","#efefef");
				$.cur = null;
			}
		});
	}
})(jQuery);

$(document).ready(function() {
	// do something here
$("#faq dd").hide();
$("#faq dt").slideContext();
});