$(document).ready(function () {

    $(".menu > li").each(function () {

        $(this).hover(
			        function () {
			            $(this).addClass("hover");
			            $(this).find("div:first").show();
			            sIFR.replacements[$("object", this).attr("id")].changeCSS(['.sIFR-root {color: #39b54a;font-size:15px; font-weight: bold; cursor:pointer;}']);
			        },
			        function () {
			            $(this).removeClass("hover");
			            $(this).find("div:first").hide();
			            if ($(this).hasClass("topselect")) {
			                sIFR.replacements[$("object", this).attr("id")].changeCSS(['.sIFR-root {color: #39b54a;font-size:15px; font-weight: bold; cursor:pointer;}']);
			            } else {
			                sIFR.replacements[$("object", this).attr("id")].changeCSS(['.sIFR-root {color: #000000;font-size:15px; font-weight: bold; cursor:pointer;}']);
			            }
			        }
		        );

    });

    $(".menu li ul li").each(function () {

        if ($(this).find("div")) {
            $(this).hover(
			            function () {
			                $(this).addClass("hover");
			                $(this).find("div:first").show();
			            },
			            function () {
			                $(this).removeClass("hover");
			                $(this).find("div:first").hide();
			            }
		            );
        }

    });

});
