
            YUI().use('scrollview', function(Y) {

                var scrollView = new Y.ScrollView({
                    id: "scrollview",
                    srcNode: '#content2',
                    height: 310,
                    flick: {
                        minDistance:10,
                        minVelocity:0.3,
                        axis: "y"
                    }
                });

                scrollView.render();
                
                var content = scrollView.get("contentBox"); 

				content.delegate("click", function(e) {
				    // Prevent links from navigating as part of a scroll gesture
				    if (Math.abs(scrollView.lastScrolledAmt) > 2) {
				        e.preventDefault();
						Y.log("Link behavior suppressed.")
				    }
				}, "a");

                content.delegate("mousedown", function(e) {
                    // Prevent default anchor drag behavior, on browsers which let you drag anchors to the desktop
                    e.preventDefault();
                }, "a");
            });


