$(function(){
		
		  $('#midground').css({backgroundPosition: '0px 0px'});
		  $('#foreground').css({backgroundPosition: '0px 0px'});
		  $('#background').css({backgroundPosition: '0px 0px'});
		
			$('#midground').animate({
				backgroundPosition:"(-10000px -2000px)"
			}, 12000000, 'linear');
			
			$('#foreground').animate({
				backgroundPosition:"(-90000px -20000px)"
			}, 15000000, 'linear');
			
			$('#background').animate({
				backgroundPosition:"(-10000px -5000px)"
			}, 20000000, 'linear');
			
		});

$(function()
		{
			var pane = $('#content_news');
			pane.jScrollPane(
				{
					showArrows: true,
					arrowScrollOnHover: true,
					animateScroll: true,
					verticalDragMinHeight: 20,
					verticalDragMaxHeight: 80
				}
			);
		});

$(document).ready(function() {
		$('.slideshow').cycle({
			fx: 'fade',
			speed: 1000,
			timeout:  4000
		});
	});
