
// (C) 2008 Przemysław Wądołowski

$(document).ready(init);

function init()
{
  $('#header').flash('flash/top_flash.swf', 922, 280, { wmode:'transparent' });
  $('#loga').flash('flash/loga.swf', 922, 100, { wmode:'transparent' });
  
  $('.box .holder > *:first-child').css('margin-top', 0);
  $('.box .holder > *:last-child').css('margin-bottom', 0);
  
  $('.produkt-list').mouseover(function() {
    $(this).css('background-color', '#313e4a');
  });
  $('.produkt-list').mouseout(function() {
    $(this).css('background-color', 'transparent');
  });  
  
}

