<script language="JavaScript" type="text/javascript">
$(document).ready(function(){
var parentLink = $('a[data-icon-id]:not(".stage-2 a")'), _ = $.cookie('accordion_index') + '';
if (_ == 'undefined' || _ == 'null') {
$.cookie('accordion_index', '', { path: '/' });
} else if (_.length > 1) {
var count = parentLink.length - 1;
while (count >= 0) {
if (_.indexOf(count+'_') >= 0){
parentLink.eq(count).next('.stage-2').show();
}
count--;
}
}
parentLink.click(function(){
var f = $(this).data('icon-id') - 1 + '_';
var fC = $.cookie('accordion_index');
if(fC.indexOf(f) < 0) {
f += fC;
$.cookie('accordion_index', f, { path: '/' });
} else {
f = fC.replace(f, '');
$.cookie('accordion_index', f, { path: '/' });
}
$(document).ready(function(){
var pageHref = window.location.pathname.split('/')[2];
$('a[href^="/category/'+pageHref+'"]').next('.stage-2').show();
});
});
});
</script>