$(document).ready(function () { var $menulist = $(".menu_body a"); $menulist.each(function () { var url = $(this).attr("href"); if (window.location.href.indexOf(url) >= 0) { //alert($(this).parent().OutHTML()); //$(this).parent().show(); $(this).parent().css("display","block"); // $(this).css("color", "#D54D35"); } }); }); $(document).ready(function () { //slides the element with class "menu_body" when paragraph with class "menu_head" is clicked $("#firstpane li.menu_head").click(function () { $(this).next("dl.menu_body").slideToggle(300).siblings("dl.menu_body").slideUp("slow"); }); });