window.addEvent('domready', function(){
  var count = 1;
  $$('#menu a').each(function(a) {
    a.set('id', 'menu_item'+count);

    a.addEvent('mouseover', function() {
       $(this.id+'_desc').setStyle('display', 'block');
    });
    a.addEvent('mouseout', function() {
       $(this.id+'_desc').setStyle('display', 'none');
    });
    $('menu_item'+count+'_desc').setStyle('display', 'none');

    count++;
  });

  // add frame for product shots
  var portfolio_tds = $$('table.portfolio td');  
  portfolio_tds.each(function(td) {

    var img = td.getChildren('p').getChildren('img');

    td.setStyle('background', 'url('+img[0].get('src')+') no-repeat 20px 30px');
    img[0].dispose();

    var frame = new Element('img', {src: theme_path+'/graphics/portfolio_frame'+$random(1,3)+'.png', 'class': 'portfolio_frame'});
    frame.inject(td, 'top');

  });


});
