// JavaScript Document

$(document).ready(function(){
						   
$("a.toggle").click(
    function()
    {
        $(this).parent().parent().find("ul").hide();
        $(this).parent().find("ul").show().find("ul").hide();
    },
    
    function()
    {
        $(this).parent().parent().find("ul").hide();
    }
    );

$("a.toggle2").click(
    function()
    {
        $(this).parent().parent().find("ul").hide();
    }
    );


});



