$(document).ready(function()
{
	
	// this initialises the demo scollpanes on the page - each with different
	// animation characteristics.
    
	// set up the links
	$('a.scroll-to-element-demo').bind(
		'click',
		function()
		{
			$this = $(this);
			var destinationSelector = $(this).attr('rel');
				$('.scrollable').each(
					function()
					{
					try{
						this.scrollTo(destinationSelector);
					}catch(er){}
					}
				);
				return false;
		}
	);
	
});
