$(function() {
    if(typeof product_group == "undefined") {
        var product_group = 0;
    }
    var index = parseInt($.cookie('accordion_index'));
    
    //console.log(index);
    if(isNaN(index) && product_group == 0) {
        index = 0;
    }
    else if(product_group != 0) {
        var listItem = document.getElementById('ProductPricesSmall_productGroup_'+product_group);
        index = $('#ProductPricesSmall div.pane').index(listItem);
    }

    $('#ProductPricesSmall div.pane').eq(index).css('display','block');  
    //console.log(index);    
    $("#accordion").accordion({ header: "h3",
                                active: index,
                                autoHeight:false,
                                animated: true,
                                collapsible: true
                                });   
    
    //$('#ProductPricesSmall div.pane').eq(index).addClass('ui-accordion-content-active');  
    //$('#ProductPricesSmall h3.box_1_SectionHeader').eq(index).removeClass('ui-state-default');  
    //$('#ProductPricesSmall h3.box_1_SectionHeader').eq(index).addClass('ui-state-active');  
    $('#ProductPricesSmall h3').each( function() { 
        //console.log('each');
        $(this).click(function() {
            //console.log('onclick');
            $.cookie('accordion_index', $('#accordion').accordion( "option", "active" ));
            })
    });
});

