// Define themeDreamer specific javascript behavior
(function($){
	$(function(){
		$('.question + li').each(function(e){
			
			// Hide children
			$(this).css("display","none");
		});
		$('.question').bind('click',function(){
			
			// Toggle the child visibility
			$(this).next().slideToggle();
		});
		$('.question + li').bind('click',function(){

			// Toggle the visibility
			$(this).slideToggle();												  
		});
		
		// Fix IE 6 sidebar 
		if (($.browser.version == "6.0")){
			$("#sidebar-wrapper").css("position","absolute");
			$("#sidebar-wrapper").css("margin-left","-60px");
			$("#content-wrapper").css("height","800px");
		}
	});
})(jQuery);