// JavaScript Document

$(document).ready(function()	
{
	$(".thebody").hide();
		
	$(".title").click(function(){
	$(this).siblings("ul .thebody").toggle("slow");return false;
    	 });

  $('div.hide').hide();
  $('div.main-content h2').click(function() {											 
    $(this).next('div.hide').toggle('slow')
	.siblings('div.hide:visible').slideUp('slow')	
  });

});

