
//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked


$(document).ready(function()
{ 
$("#firstpane p.menu_head").click(function()
{
    $(this).next("div.menu_body").slideToggle(600).siblings("div.menu_body").slideUp("slow");
    $(this).siblings();
});

}); 

//  .css({backgroundImage:"url(/wp-content/themes/xtreme-magazine/images/down.png)"})

// css({background:"transparent url(/wp-content/themes/xtreme-magazine/images/left.png) top right no-repeat"})
