$(function(){

  /* Header - Menu */

  $('#header ul.menu > li')
  .mouseenter(function(){
    $('> ul', this).show();
    $(this).addClass('hover');
  })
  .mouseleave(function(){
    $('> ul', this).hide();
    $(this).removeClass('hover');
  });

  $('#header ul.menu li ul > li')
  .mouseenter(function(){
    $('> ul', this).show();
    $(this).addClass('hover');
    $('> a', this).addClass('hover');
    $('> span', this).addClass('hover');
  })
  .mouseleave(function(){
    $('> ul', this).hide();
    $(this).removeClass('hover');
    $('> a', this).removeClass('hover');
    $('> span', this).removeClass('hover');
  });

  /* Favorite */
  
  $('.favorite').click(function(){
    var url = window.location.protocol + '//' + window.location.hostname;
    if ($.browser.msie) {
      window.external.addFavorite(url, 'Fiproline');
    } else {
      window.sidebar.addPanel('Fiproline', url, '');
    }
    return false;
  });
  
  /* Print */

  $('.print').live('click', function(){
    window.print();
    return false;
  });

 /* Service */
 
  $('a.fancybox').live('click', function(){
    $(this).fancybox().trigger('click.service');
    return false;
  });

});
