jQuery(document).ready(function(){    jQuery('#costa-banner img').hide();    jQuery('#costa-banner img:first').show();        var slideInterval = 4000;        function slideBanners() {        jQuery('#costa-banner img:last').clone().prependTo('#costa-banner a').css('display','none');	//neem het laatste item, clone het en zet het bovenaan        jQuery('#costa-banner img:first').fadeIn(1000);        jQuery('#costa-banner img:first').next().css('display','none');        jQuery('#costa-banner img:last').remove();    }        setInterval(slideBanners, slideInterval);});
