$(document).ready(
    function()
    {
        $("#order-name").focus(
            function()
            {                
                if($(this).val() == "Ваше имя")
                {
                    $(this).val("");
                    $(this).addClass("type");
                }
            }
        );
        
        $("#order-name").blur(
            function()
            {
                if($(this).val() == "" || $(this).val() == " " || $(this).val() == "  ")
                {
                    $(this).val("Ваше имя");
                    $(this).removeClass("type");
                }
            }
        );
        
        $("#order-email").focus(
            function()
            {                
                if($(this).val() == "Ваш e-mail")
                {
                    $(this).val("");
                    $(this).addClass("type");
                }
            }
        );
        
        $("#order-email").blur(
            function()
            {
                if($(this).val() == "" || $(this).val() == " " || $(this).val() == "  ")
                {
                    $(this).val("Ваш e-mail");
                    $(this).removeClass("type");
                }
            }
        );
        
        $("#order-comment").focus(
            function()
            {                
                if($(this).val() == "Здравствуйте, меня интересует...")
                {
                    $(this).val("");
                    $(this).addClass("type");
                }
            }
        );
        
        $("#order-comment").blur(
            function()
            {
                if($(this).val() == "" || $(this).val() == " " || $(this).val() == "  ")
                {
                    $(this).val("Здравствуйте, меня интересует...");
                    $(this).removeClass("type");
                }
            }
        );
    }
);
