$(document).ready(function(){
				// These are all the options with their default values
				
				$(".tickerul").ticker("init",{
					delay:5000, 	// Delay between switching of elements
					speed:500, 		// Animation speed
					linked:true, 	// If stepping after last element will go to first or stop and stepping before first will goto last or stop
					selection:'li',	// The sub-selection to use for each element
					animations: {
						_in:'fadeIn',	// Animation used to fade in
						out:'fadeOut'	// Animation used to fade out
					},
					callbacks: {
						_in:function(ul) {
							// Current (active) element is in ul.ticker.current
							// Called when the fade in animation starts
						},
						out:function(ul) {
							// Current (active) element is in ul.ticker.current
							// Called when the fade out animations tarts
						},
						init:function(ul) {
							// Current (active) element is in ul.ticker.current
							// Called when ticker is initialized
						}
					}
					
				// This call enables looping for this ticker, without it start/stop doesn't do anything and it wont loop
				}).ticker("loop").ticker("start")
				

			});
