
// Copyright (C) 2008 Przemysław Wądołowski

$(document).ready(pageSetUp);


function pageSetUp() 
{
  //$('#page-top-flash').flash('flash/preloader.swf', 990, 457, { bgcolor:'#000' });
  //$('a[rel=lightbox]').lightbox();
  $('#content > *:first-child').css('margin-top', 0);
  
  $('#menu img.' + page).each(function() {
      var parts = this.src.split('/');
      var file = '/over-' + parts.pop();
      this.src = parts.join('/') + file;  
  });
  
  $('#menu img').each(function() {
    this.originalSrc = this.src;
    if ( this.src.match('over') )
    {
      this.overSrc = this.src;
    }
    else
    {
      var parts = this.src.split('/');
      var file = '/over-' + parts.pop();
      this.overSrc = parts.join('/') + file;
    }
  });
  $('#menu img').mouseover(function() {
    this.src = this.overSrc;
    return false; 
  });
  $('#menu img').mouseout(function() {
    this.src = this.originalSrc;
    return false; 
  });  
}
