//Slideshow header photo

$(document).ready(function(){

$("#hb").css("position","absolute").css("top","0px").css("z-index","99");
var photoBook = $("#photobook").children().each(function(){
    $("#hb").before($(this).css("z-index",'1')); 
});
$("#headerfoto img").not("#hb").css("margin-left","280px")
showNext = function(){
$("#headerfoto img:nth(1)").css("z-index","2");
$("#headerfoto img:first").fadeOut(1000)
setTimeout(function(){
    $("#headerfoto img:first").css("z-index","1");
    $("#headerfoto img:last").before($("#headerfoto img:first")[0]);
    $("#headerfoto img:first").css("z-index","90");
    $("#headerfoto img").show();
    showNext();
},5000);
}
showNext()

});

