scrollGlue v1.1.0

Include scripts

Start by including jQuery and the plugin.

				<script src="jquery.js"></script>
				<script src="jquery.scrollGlue.js"></script>
				

Activate the plugin

Now to the easy part.. All you have to do is call .scrollGlue() on your elements.

				<script>
					// jQuery ready event
					$(function() {
						$('.target').scrollGlue({
							speed: 0 // The scroll animation speed
						});
					});
				</script>