$(document).ready(function(){
  $("#LBPo a").mouseover(function(){
    $(this).css("border-color","#FDAF6A");
    $(this).css("background","#FFF9F3");
  });
  $("#LBPo a").mouseout(function(){
    $(this).css("border-color","#E4E4E4");
    $(this).css("background","#F9F8F8");
  });
  $("#LBArLi").click(function(){
    $("#LBArBo").toggle("slow");
  });
});
