$(function() {
    $("td.picture img").mouseover(function() {
        $(this).parents("tr").siblings("tr").children("th.name").children("a").addClass("hover");
    });
    $("td.picture img").mouseout(function(ele) {
        $(this).parents("tr").siblings("tr").children("th.name").children("a").removeClass("hover");
    });

    // <IE7 Navigation
    if ($.browser.msie && $.browser.version < 7) {
        // Fix SELECT bleedthrough
        $("#navigation li").append('<iframe src="javascript:\'\'"></iframe>');
    }
});
