$(document).ready(function(){
	$("#slider2").easySlider({
		loop: true,
		autoplayDuration: 0,
		nextId: 'nextButton2',
		prevId: 'prevButton2'
	}).show();
	$('#slider').cycle({ 
		fx: 	'fade',
		prev:   '#prevButton', 
		next:   '#nextButton',
		timeout: 10000
	});
	$('#pauseButton').toggle(function() { 
			$('#slider').cycle('pause');
			$(this).css('background-image', 'url("20092010/launch/images/sliders/controller-play.gif")');
			$(this).css('margin-right', "-3px");
			$(this).css('width', "20px");
			}, function() {
			$('#slider').cycle('resume', true);
			$(this).css('background-image', "url('20092010/launch/images/sliders/controller-pause.gif')");
			$(this).css('margin-right', "0px");
			$(this).css('width', "16px");
	});
	$('.info').css('display', 'block');
});
