parseSelector
In addition to modifying the parseSelector javascript in the sifr.js source, you can also adapt it to use jQuery.
Steps to replace parseSelector with jQuery:
1 - Make sure you include the jQuery javascript file.
2 - Remove all of the parseSelector code at the top of sifr.js
3 - Add the following line:
var parseSelector = $;
It needs to be added before this line:
if(!nodes && parseSelector) nodes = parseSelector(kwargs.selector);
That's it. Now all of the selectors available to you in jQuery can work for sIFR3. Not to mention, the performance seems to be improved.

