/*
*/
var ftokenurl = 'fetch-token.php';

var showDock = function() {
 //Init Fisheye
  $('#module-dock').Fisheye({
      maxWidth: 20,
      items: 'a',
      itemsText: 'span',
      container: '.dock-container',
      itemWidth: 40,
      proximity: 25,
      halign : 'center'
  });
  $('#module-dock').css('visibility','visible');
  $('#module-dock').fadeIn('slow');
}//showDock

var showPhotos = function() {
  $('#photos').cycle('fade', {timeout:5000,speed:2000});
}//showPhotos

$(document).ready(function(){
  $('#main .background').fadeTo(2000,0.15,showPhotos);
});