	var timeout = 0;
		$j(function(){
			$j('#slider-background').mouseover(function(){
			clearTimeout(timeout);
			$j('#slider-background #prevBtn, #slider-background #nextBtn').fadeIn();
		});
			
		$j('#slider-background').mouseout(function(){
			timeout = setTimeout(function(){
				$j('#slider-background #prevBtn, #slider-background #nextBtn').fadeOut();
			}, 1000);
		});
		
		$j('#slider').easySlider({
				continuous: true,
				pause: 10000,
				auto: true
		});
				$j('.slider-container #prevBtn').hide();

	});

