﻿/// <reference name="jquery-1.3.2-vsdoc.js"/>

$(function() {
    $(".mainmenu .item").hover(function() {
        $(this).find(".submenu").slideDown("fast");
        $(this).find("img").each(function() {
            if(!$(this).hasClass("selected"))
                $(this).attr("src", $(this).attr("src").replace(".gif", "_over.gif"));
        });
    },
    function() {
    $(this).find(".submenu").hide();
        $(this).find("img").each(function() {
            if (!$(this).hasClass("selected"))
                $(this).attr("src", $(this).attr("src").replace("_over.gif", ".gif"));
        });
    });
});