/**
 * init jQuery scroll pane in 'no-conflict-mode'
 * 
 * @author  maik mettenheimer
 * @version 2008-11
 */

jQuery.noConflict();

jQuery(document).ready(function()
{
    // init scroll pane
    var $pane = jQuery('#scrollPane');
    $pane.jScrollPane();
  
    // scroll to (only used by ie6 because scroll arrows are buggy)
    jQuery('.scrollto').bind('click',function() {
        jQuery('#scrollPane')[0].scrollBy(parseInt(jQuery(this).attr('rel')));
        return false;
    });

});

