 jQuery.noConflict();
     
     // Use jQuery via jQuery(...)
     jQuery(document).ready(function(){

	//create scroller for each element with "horizontal_scroller" class...
	jQuery('.horizontal_scroller').SetScroller({	velocity: 	 60,
											direction: 	 'horizontal',
											startfrom: 	 'right',
											loop:		 'infinite',
											movetype: 	 'linear',
											onmouseover: 'pause',
											onmouseout:  'play',
											onstartup: 	 'play',
											cursor: 	 'pointer'
										});

	//how to overwrite options after setup and without deleting the other settings...
	jQuery('#no_mouse_events').ResetScroller({	onmouseover: 'play', onmouseout: 'play'   });
	jQuery('#scrollercontrol').ResetScroller({	velocity: 85, startfrom: 'left'   });



});

