	//easing equation, borrowed from jQuery easing plugin
		//http://gsgd.co.uk/sandbox/jquery.easing.php
		jQuery.easing.elasout = function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
		};
	
		jQuery(function( jQuery ){
			/**
			 * Most jQuery.serialScroll's settings, actually belong to jQuery.ScrollTo, check it's demo for an example of each option.
			 * @see http://flesler.webs.com/jQuery.ScrollTo/
			 * You can use EVERY single setting of jQuery.ScrollTo, in the settings hash you send to jQuery.serialScroll.
			 */
			
			/**
			 * IMPORTANT: this call to the plugin specifies ALL the settings (plus some of jQuery.ScrollTo)
			 * This is done so you can see them. You DON'T need to specify them all.
			 * The option 'jump' doesn't play nice if combined with 'lazy' (yet).
			 */
		
			/**
			 * The call below, is just to show that you are not restricted to prev/next buttons
			 * In this case, the plugin will react to a custom event on the container
			 * You can trigger the event from the outside.
			 */
			
			var jQuerynewsTicker = jQuery('.Documents_List');
			jQuerynewsTicker.serialScroll({
				items:'div.Documents_ListItem',
				next: jQuerynewsTicker,//odd huh, the container itself will get bound
				duration:1400,
				force:true,
				cycle: true,
				axis:'y',
				lazy:true,//NOTE: it's set to true, meaning you can/remove/reorder the items and the changes are taken into account.
				step:4, //scroll 2 news each time
				event:'showNext' //just a random event name
			});
			
			setInterval(function(){//scroll each 5 seconds
				jQuerynewsTicker.trigger('showNext');
			}, 10000 );
			
		});





