jQuery(document).ready(function(){
  
//  Cufon.set('fontFamily', 'Agenda_light').replace('#imagerotator_title');
//  Cufon.now();

  window.setTimeout(function(){
    //alert(jQuery('#imagerotator_monoslideshow embed').length);
  },1000);

  jQuery('#country_choose').mouseover(function(){
    window.clearTimeout(country_choose_div_timeout);
    jQuery('#country_choose_div').show();
  });

  jQuery('#country_choose_div').mouseover(function(){
    window.clearTimeout(country_choose_div_timeout);
  });

  jQuery('#country_choose').mouseout(function(){
    country_choose_div_timeout = window.setTimeout(hideCountryChooseDiv, 1000);
  });

  jQuery('#country_choose_div').mouseout(function(){
    country_choose_div_timeout = window.setTimeout(hideCountryChooseDiv, 1000);
  });
  
  //jQuery("#country_choose").tooltip({tip:'#country_choose_div', offset: [277, -1090]});

  jQuery('body').click(function(){
    window.clearTimeout(country_choose_div_timeout);
    jQuery('#country_choose_div').hide();
  });

  var activeWidth = (jQuery('#menubar > ul > .active').width() + 18) / 2;
  var xPos = parseInt(activeWidth);
  jQuery('#menubar > ul > .active').css({ background: 'url(/images/mainmenu_active.png) no-repeat', backgroundPosition: xPos +'px 0' });
  
});

function hideCountryChooseDiv() {
  jQuery('#country_choose_div').hide();
}

var country_choose_div_timeout;
