$(document).ready(function() { function showhide() { $("#green").fadeIn(1000, function() { $("#green").fadeOut(1000, showhide); }); } showhide(); });