// JavaScript Document $(document).ready(function() { $("#footer .suivant").click(function(){ $.ajax({ url:"query_push.php?p=push", cache:false, success:function(content) { show(content); }, error:function(XMLHttpRequest,textStatus,errorThrown) { alert(textStatus); } }); return false; }); init(); var carouselInterval = 8000; var carouselScroll = setInterval(init,carouselInterval); $('#push_info').hover(function(){ clearInterval(carouselScroll); } , function() { carouselScroll = setInterval(init,carouselInterval);}); }); function show(content) { $("#footer #push_info").fadeOut(500,function(){ $(this).empty(); $(this).append(content); $(this).fadeIn(1000); }); } function init() { $.ajax({ url:"query_push.php?p=push", success:function(content) { show(content); }, error:function(XMLHttpRequest,textStatus,errorThrown) { alert(textStatus); } }); return false; }