$(document).ready(function() { 
   if ($("#storemenu_nocollapse").length > 0) {
      // 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: 'easeslide'
      });
   } else {
      // 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: 'easeslide',
         active: 0
      });
   }
   

   //provide accordion on product-details
   if ($("#product-widgets").length > 0) {
      //if(console){ console.log($("#layout .dialog:gt(0)")); }
      $('#product-widgets').accordion({
         active: false,
         header: '.title',
         autoheight: false,
         navigation: false,
         collapsible: true,
         selectedClass: 'menu_active',
         event: 'click',
         fillSpace: false,
         animated: 'easeslide',
         active: 0
      });
   }
   
   /* removed per NHANNA on 2010-03-29 due to tickets about price being hidden
   try {
      $(".store .products-list .item .details").css({'margin-left': "0"});
   } catch(err) {}*/
   
   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');
}
