$(function() {
    $("#nav li").each(function() {
        $(this).hover(
                        function() {
                            $(this).addClass("over");
                            if (IsIE(6)) {
                                if ($(this).find("strong").length > 0) $(this).css({  });
                            }
                        },
                        function() {
                            $(this).removeClass("over");
                            if (IsIE(6)) { if ($(this).find("strong").length > 0) $(this).removeAttr("style"); }
                        }
                    );
    });
});

function show(id)
{
    for(var i=0; i<5;i++)
    {
          document.getElementById("tab-content-"+i).style.display='none';
    }
    document.getElementById("tab-content-"+id).style.display='block';
}
