$(function()
{
  if ($.browser.msie && $.browser.version == 6)
  {
    $(".navigation ul > li").each(function()
    {
      $(this).hover(function()
      {
        $("ul" , this).css("display", "block");
      },
      function()
      {
        $("ul" , this).css("display", "none");
      });
    });
  }
});

