$(function()
		{
			
			// this initialises the demo scollpanes on the page - each with different
			// animation characteristics.
			$('#notConteudo').jScrollPane({animateTo:true, animateInterval:50, animateStep:3});
			
			// set up the links
			$('a.scroll-to-element-demo').bind(
				'click',
				function()
				{
					$this = $(this);
					var destinationSelector = $(this).attr('rel');
					$('.scroll-pane', $this.parent().parent().parent()).each(
						function()
						{
							this.scrollTo(destinationSelector);
						}
					);
					return false;
				}
			);
			
		});
