$(document).ready(function(){
    $('#lemenu ul').hide();
    //$("#lemenu ul:first").show();
    $("#lemenu ul.expand").show();
    $("#lemenu h4").click(function(){
      $(this).next("ul").slideToggle("fast");
        $(this).siblings("h4").next("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();
	});
});


