﻿/// <reference path="jquery-1.4.1-vsdoc.js"/>

$(document).ready(function () {
    var title = $("#breadcrumbs a:first").html();
    $("#MainMenu a").each(function (i) {
        if ($(this).html() == title) {
            $(this).css("color", "#ff7e00");
            return false;
        }
    });

//    $('#MainMenu a:contains(' + title + ')').css("color", "#ff7e00");

});
