$(document).ready(function(){

// Remove default content
$('#headergallery > img').remove();

// Add the pictures from the Array above to the DOM
$('#headergallery').append($("#hiddengallery"));

// Animate the pictures
$('#hiddengallery').innerfade({
    speed: 1500,
    timeout: 4000,
    type: 'sequence'
    });
});
