$(document).ready(function(){
    $('ul.menu ul').hide();
    //$("ul.menu ul:first").show();
    $("ul.menu ul.expand").show();
    $("ul.menu li").click(function(){
      $(this).children("ul").slideToggle("fast");
        $(this).siblings().children("ul:visible").slideUp("fast");
    });
});


$(document).ready(function() {
     $('#topnavigation a').stop().animate({'marginLeft':'-135px'},1000);
     $('#topnavigation > li').hover(
     function () {
     $('a',$(this)).stop().animate({'marginLeft':'-45px'},200);
     },
     function () {
    $('a',$(this)).stop().animate({'marginLeft':'-135px'},200);
    }
    );
});

$(document).ready(function() {
	$("#open").click(function(){
		$("div#panel").slideDown("fast");
	});
	$("#close").click(function(){
		$("div#panel").slideUp("fast");
	});
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});
});

