$(document).ready(function(){
    $("#toolkit .msg_body").add("#toolkit #collapsetopics").hide();
    $("#toolkit .msg_head a").addClass("opentopic");
  
    
    $("#toolkit .msg_head a").click(function(event){
        $(this).parent().next(".msg_body").slideToggle("fast");
        $(this).toggleClass("opentopic").toggleClass("closetopic");
        return false;
    });

    
    $("#toolkit #expandtopics").click(function(event){
        $("#toolkit .msg_body").show("fast", function() {
          
        });
        $("#toolkit #collapsetopics").toggle();
        $("#toolkit #expandtopics").toggle();
        return false;
    });
    
    $("#toolkit #collapsetopics").click(function(event){
        $("#toolkit .msg_body").hide("fast", function() {
        });
        $("#toolkit #collapsetopics").toggle();
        $("#toolkit #expandtopics").toggle();
        return false;
    });
	    
	$( "#datepicker" ).datepicker();
	
	});
	
	$(function() {
		$("#tabs").tabs();
	});





