$(document).ready(function(){
	$('div#cycle').cycle({ 
			timeout:  4000,
            prev:    '#prev', 
            next:    '#next'
     });
	$("div#cycle, div.paging").hover(function () {	
		$('div.paging').toggle(); 	
		$('div#cycle').cycle('toggle');
	});

});
