$(document).ready(function() {
  Cufon.replace('#headline h1');
  Cufon.replace('h1#title');
  Cufon.replace('#headline h3');
  Cufon.replace('.box h2');
  Cufon.replace('.offer_detail h2');
  Cufon.replace('#headline h2, #grey_box h2, #contact_box h2');
  
  $('.submenu').hide();
  $('.broad').hide();
  
  $('#navMain li').hover(function() {
    $(this).find('.submenu').show();
    $(this).find('a:first').addClass('active');
  }, function() {
    $(this).find('.submenu').hide();
    $(this).find('a:first').removeClass('active');
  });
  
  $('#latest_news .cell h3').hover(function() {
    $(this).next().fadeIn('fast');
  }, function() {
    $(this).next().fadeOut('fast');
  });
  
  $('.offer_item a.more').hover(function() {
    $(this).parent().find('.broad').fadeIn('fast');
  }, function() {
    $(this).parent().find('.broad').fadeOut('fast');
  });
});

