﻿$(document).ready(function() {
    $("ul li:first-child").addClass("first-child"); // for IE6
    // IE menu hacks
    if (($.browser.msie) && ($.browser.version < 8)) {
        $('#nav ul li').mouseover(function() {
            $(this).addClass('sfhover');
        });
        $('#nav ul li').mouseout(function() {
            $(this).removeClass('sfhover');
        });
    }
    // expanders
    $('a.toggle').live("click", function(event) {
        event.preventDefault();
        $('.toggle').toggle();
        $('.toggle-target').slideToggle("normal");
    });
});
