DrKawashima
However, JQUERY USERS beware! if you've linked to the jquery lib in your source file (even if you don't use any jquery scripts) SP tabs will not show up on your page. I spent half an hour trying to figure out what the problem was, then as soon as I removed my jquery link, it worked perfectly.
It will work with jQuery if you use jQuery noConflict method.
if ($defined(window.jQuery) && $type(jQuery.noConflict)=='function') {
jQuery.noConflict();
}


