$(document).ready(function(){
  
   
   //get the current items category title from the nested list #current_product_id flag
   var pid = $("#current_product").parents('ul').parent('div').prev().text();
   
   //alert(pid);
   
   //loop the h6 elements until we get a match
   var i=0;
   var j=-1;
   $('#accordion h6').each(function(i)
   {
  // alert($(this).text());
   if($(this).text()==pid){
    j=i;
   }
   });
   
    $("#accordion").accordion({autoHeight: false, active: j});
   
});