$(document).ready(function(){
  $('#navigation ul.level0 li').bind('mouseenter', function () {
    $(this).find('.sub').css('display', 'inline');
  });
  $('#navigation ul.level0 li').bind('mouseleave', function () {
    $(this).find('.sub').css('display', 'none');
  });
  $('#navigation ul.level0 li .sub').bind('mouseenter', function () {
    $(this).prev('a').find('span').css('background', 'url(assets/templates/flexis/img/menuItem.gif) no-repeat 0px -50px');});
  $('#navigation ul.level0 li .sub').bind('mouseleave', function () {
    $(this).prev('a').find('span').removeAttr('style');
  });
  $('#navigation .country').bind('mouseenter', function () {
    $(this).addClass('ie6hover');
    console.log("country hover");
  });
  $('#navigation .country').bind('mouseleave', function () {
    $(this).removeClass('ie6hover');
  });
});

