$(document).ready(function() { 
   $('#sideBar menu-dialog .title-bar').accordion({ 
       autoheight: false 
   });
   
   // second simple accordion with special markup
   $('#storemenu').accordion({
      active: false,
      header: '.title-bar',
      autoheight: false,
      navigation: false,
      collapsible: true,
      selectedClass: 'menu_active',
      event: 'click',
      fillSpace: false,
      animated: 'slide',
      active: 0
   });
   
   if ($("#checkout_warning").length > 0) {
      $(".checkout_warning_anchor").attr("href","javascript:void(0);");
      $(".checkout_warning_anchor").click(function(){
         displayPayPalNotice();
      });
      $("#checkout_warning").hide();
   }
});
//---------------------------------------
function displayPayPalNotice () {
   tb_show('IE8 and Google Checkout/PayPal Dialog Window','#TB_inline?height=450&width=560&inlineId=checkout_warning&customClass=checkout_warning');
}
