Dear Elad Darmon,
You can change the order of category displayed on the module in the layout file.
Example: Type1 => go to "modules/mod_sj_categories_accordion/tmpl/layout1.php", finding:
$('#<?php echo $uniqued;?>').sj_categories_accordion({
items : '.ca-element',
heading : '.ca-element-heading',
content : '.ca-element-content',
active_class : 'selected',
event : '<?php echo $options->pager_event;?>',
delay : 200,
duration : 400,
active : 1
});
=>
$('#<?php echo $uniqued;?>').sj_categories_accordion({
items : '.ca-element',
heading : '.ca-element-heading',
content : '.ca-element-content',
active_class : 'selected',
event : '<?php echo $options->pager_event;?>',
delay : 200,
duration : 400,
active : your_order
});
If you want all tabs closed initially, you can set the "active : -1"
Thanks