onload = function()
{
 el = cssQuery('#menu .active');

 if (el.length==0) return;

 el = el[el.length-1];
 while (el = el.parentNode)
 {
  if (el.firstChild.tagName == 'A')
   el.firstChild.className='active';
  if (el.tagName == 'UL' || el.tagName == 'LI')
   el.className='active';
 }
}

shop_input = function(input, key)
{
 if (input.value != input.defaultValue)
  input.nextSibling.href='/shop.php?key='+key+'&count='+input.value;
 else
  input.nextSibling.href='#';
}

