		$(function() {
			$('#left').cycle({
				fx: 'fade',
				speed:3000,
				timeout:1500
			});
			
			$('#right').cycle({
				fx: 'fade',
				speed:2500,
				timeout:1500
			});
		});


function cacheOff()
{

$("#left").css({visibility:"visible"});
$("#right").css({visibility:"visible"});

}
window.onload = cacheOff;
