
// Copyright (C) 2008 Przemysław Wądołowski

$(document).ready(init);


function init() 
{
  $('#logo').flash('flash/logo.swf', 220, 132, { bgcolor:'#070707' });
  $('a[rel=lightbox]').lightBox();
  
  $('.hint').each(function()
  {
    this.bgImage = $(this).css('background-image');
    if ( $(this).val().length )
    {
      $(this).css('background-image', 'none');
    }    
    $(this).focus(function()
    {
      $(this).css('background-image', 'none');
    });
    $(this).blur(function()
    {
      if ( !$(this).val().length )
      {
        $(this).css('background-image', this.bgImage);
      }
    });    
  });
  
  var hc = $('#content').height();
  var hs = $('#sidebar').height();
  
  if ( hc < hs + 20 )
  {
    $('#content').css('min-height', hs + 20);
    if ( $.browser.msie && $.browser.version < 7 )
    {
      $('#content').css('height', hs + 20);
    }
  } 
  
  $('#products .img a').each(function()
  {
    $(this).append('<img src="images/lupa.gif" class="lupa" />');
  });
}




