$(document).ready(function(){
	$('#animation').cycle({
		fx: 'fade',
	    speed:	700,
	    startingSlide: 0,
	    timeout: 4000,
	    delay:  4000,
	    easing: "easein"
	});
	$('#goto1').mouseover(function() {
		$('#animation').cycle(0);
		return false;
	});
	$('#goto2').mouseover(function() {
		$('#animation').cycle(1);
		return false;
	});
	$('#goto3').mouseover(function() {
		$('#animation').cycle(2);
		return false;
	});
	$('#goto4').mouseover(function() {
		$('#animation').cycle(3);
		return false;
	});
	$('#goto5').mouseover(function() {
		$('#animation').cycle(4);
		return false;
	});
	var totalSlides = 5;
});
