$(function(){
	$('.animateBody').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 60000,
		pager:  '.animateNav'
	});
	$(".animateBody").hover(
 		 function () {
    		$(this).cycle('pause');
  		 },
	 	 function () {
		    $(this).cycle('resume');
	     }
	);	
})
