$(document).ready(function() {

  $('#top .menu li:last').addClass('last');  
  $('#appLi').colorbox({width:"55%", height:"75%", inline:true, href:"#appTxt", title:"Appetizers, Soups &amp; Salads"});
  $('#entreesLi').colorbox({width:"55%", height:"75%", inline:true, href:"#entreesTxt", title:"Entrées"});
  $('#lunchLi').colorbox({width:"55%", height:"75%", inline:true, href:"#lunchTxt", title:"Lunch"});
  $('#sushiLi').colorbox({width:"55%", height:"75%", inline:true, href:"#sushiTxt", title:"Sushi"});
  $('#drinkLi').colorbox({width:"55%", height:"75%", inline:true, href:"#drinkTxt", title:"Cocktails"});
  $('#sakeLi').colorbox({width:"55%", height:"75%", inline:true, href:"#sakeTxt", title:"Wine &amp; Sake"});
  $('#happyLi').colorbox({width:"55%", height:"75%", inline:true, href:"#happyTxt", title:"Happy Hour"});
  $('#partyLi').colorbox({width:"55%", height:"75%", inline:true, href:"#partyTxt", title:"Party Platters"});
  $('#dailyLi').colorbox({width:"55%", height:"75%", inline:true, href:"#dailyTxt", title:"Daily Specials"});
  
  $('#menuBlock .menuList').hover(
    function() {
      $('h3',this).addClass('redBg');
    },
    function() {
      $('h3',this).removeClass('redBg');
    }
  );  
  
});
