//<![CDATA[
        
                jQuery(function( $ ){
                
                        
                        var target = $('#content').get(0);
                        
                
                        target.scrollLeft = target.scrollTop = 0;
                        
                        
                        $.localScroll.hash({
                                target: target,
                                axis:'xy',
                                queue:true,
                                duration:1000
                        });
                        
                        var $last = $([]);
                        

                        $.localScroll({
                                target: target, 
                                axis:'xy',
                                queue:true,
                                duration:2000,
                                hash:true,
                                onBefore:function( e, anchor, $target ){
                                        $last.removeClass('scrolling');
                                        $last = $(this).addClass('scrolling');
                                        this.blur();
                                },
                                onAfter:function( anchor ){
                                        $last.removeClass('scrolling');
                                }
                        });
                });
//]]>


