/*#############################################################################
# Random header
#############################################################################*/
var aHeaderphotos = new Array;
aHeaderphotos[0] = 'images/header01.jpg'
aHeaderphotos[1] = 'images/header02.jpg'

//# This function needs a global var aProjectFiles with the full URL of the image
$(function(){
  $("div#headerlogo").css('background-image', 'url(\''+aHeaderphotos[Math.round(Math.random()*(aHeaderphotos.length-1))]+'\')');
});

