$("html").addClass("js");
$(document).ready( function() {
setInterval("switchSlide()", 4000);
});
function switchSlide() {
var slide = $("#promo .slide:first");
slide.hide();
$("#promo").append(slide);
slide.fadeIn(1500);
}