  $(document).ready(function() {

$(".rotate_gallery :first-child").appendTo(".rotate_gallery");
setInterval(function (){
$(".rotate_gallery :first-child").hide().appendTo(".rotate_gallery").fadeIn(2000);
},4000);
});

