$(window).load(function() {
	$("#promo").css("overflow", "hidden");
	$("#promo").show();
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		timeout: 8000,
		prev: '#prev',
		next: '#next'
	});
	$('#pause').click(function() { 
    $('#slides').cycle('pause'); 
	});
	$('#resume').click(function() { 
    $('#slides').cycle('resume'); 
	});
	
	$("#bottom-left").css("overflow", "hidden");
	$("#bottom-left").show();
	$("ul#bottom-left-slides").cycle({
		fx: 'fade',
		pause: 1,
		timeout: 0,
		prev: '#prev2',
		next: '#next2'
	});
	
	$("#bottom-center").css("overflow", "hidden");
	$("#bottom-center").show();
	$("ul#bottom-center-slides").cycle({
		fx: 'fade',
		pause: 1,
		timeout: 0,
		prev: '#prev3',
		next: '#next3'
	});
	
	$("#bottom-right").css("overflow", "hidden");
	$("#bottom-right").show();
	$("ul#bottom-right-slides").cycle({
		fx: 'fade',
		pause: 1,
		timeout: 0,
		prev: '#prev4',
		next: '#next4'
	});
	
});
