jQuery.noConflict();

(function($) {

$(document).ready(function() {
    var sidebarCategoryTitle = $('div.sidebar_category_ttl');
    
    sidebarCategoryTitle.each(function() {
        var img = $(this).find('img');
        
        $(this).hover(function() {
            img.attr('src', img.attr('src').replace('_off', '_on'));
        }, function() {
            img.attr('src', img.attr('src').replace('_on', '_off'));
        });
    });
    
    $('#pagetop').click(function() {
        $($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body')
                .animate({
                    scrollTop: 0
                });
        
        return false;
    });
});

})(jQuery);
