$(document).ready(function () {
$('.panel-heading').click(function () {
$(this).toggleClass('in').next().slideToggle();
$('.panel-heading').not(this).removeClass('in').next().slideUp();
});
$('.panel-collapse a').each(function(){
if(document.location.href == this.href) {
$(this).css('color', 'red').parent().prev().click(); // красим ссылку в красный и открываем меню
}
});
});