The script doesn't change any of the existing CSS classes in your pagination DIV's links. It only looks for links with certain CSS classes to assign special meaning to them:
Code:
<div id="paginate-slider1" class="pagination">
<a href="http://google.com">Google</a> <a href="#" class="toc">My Dog</a> <a href="#" class="toc anotherclass">My Cat</a> <a href="#" class="toc">Bob and Sue</a> <a href="#" class="prev"><</a> <a href="#" class="next">></a>
</div>
In addition, other CSS classes can co-exist inside these links, such as "toc anotherclass". The only thing that may amount to the script changing your existing CSS classes is that it adds a class of "selected" to the pagination link corresponding to the current page. It does not, however, remove any existing CSS classes in the process.
Bookmarks