$(document).ready(function() {
	$('#s1').cycle({
		fx:    'fade', 
    	speed:  800,
		timeout:  0,
		next:   '<?php echo "."$right; ?>',
		prev: '<?php echo "."$left; ?>',
		height: 532
	});
	$("."+"<?php echo $left; ?>").hover(function() {
		$(this).css({'cursor' : 'pointer'});
	});
	$('<?php echo ".".$left; ?>').hover(function() {
		$(this).css({'cursor' : 'pointer'});
	});
	$('a').hover(function() {
		$(this).css({'cursor' : 'pointer'});
	});
});