//Jquery news ticker

		jQuery.noConflict();

		jQuery(document).ready(function() 
		{
			var current = -1;
			var elems = new Array();
			var elems_i = 0;
			
			jQuery('.items').each(function() 
			{
				elems[elems_i++] = jQuery(this);
			});
			
			
			var num_elems = elems_i - 1;
			
			var animate_out = function() 
			{
				elems[current].animate({ top: '-100px' }, 'fast', 'linear', animate_in);
			}
			
			var animate_out_delay = function() 
			{
				setTimeout(animate_out, 5000); 
			}
			
			var animate_in = function() 
			{
				current = current < num_elems ? current + 1 : 0;
				
				if(elems_i > 0)
				{
					elems[current].css('top', '200px').animate({ top: '0px' }, 'fast', 'linear', animate_out_delay);
				}

			}
			animate_in();
		});


