﻿$(function () {
    $("#searchbox").focus(function () {
        if ($(this).val() == "Cauta") {
            $(this).val("");
            $(this).css("color", "#000");
        }
    }).blur(function () {
        if ($(this).val() == "") {
            $(this).val("Cauta");
            $(this).css("color", "#898989");
        }
    });

    $("#menu_1").click(function () {
        $("#sub_menu_1").slideToggle("slow");
    });

    $("#menu_2").click(function () {
        $("#sub_menu_2").slideToggle("slow");
    });

    $("#menu_3").click(function () {
        $("#sub_menu_3").slideToggle("slow");
    });
    
    $(".textbox").focus(function () {
        oldBackground = $(this).css("backgroundColor");
        $(this).css("backgroundColor", "#e9e9e9");
    }).blur(function () {
        $(this).css("backgroundColor", oldBackground);
    });

});


