A jQuery plugin that allows you to easily create content which scrolls down.
Usage
Incude Script
The HTML
<h2 class="scroll">Heading</h2> <div class="scroll-down"> <ul> <li>List Item</li> <li>List Item</li> <li>List Item</li> <li>List Item</li> </ul> </div>
The Javascript
$('h2.scroll').scrollDown({
content: ".scroll-down"
});