$(document).ready(function(){  
    $("#email")
    .val("البريد الإلكتروني")
    .focus(function(){
        if ($(this).val() == "البريد الإلكتروني") {
            $(this).val("");
        }
    })
    .blur(function(){
        if ($(this).val() == "") {
            $(this).val("البريد الإلكتروني");
        }
    });  
    $("#text")
    .val("الرسالة")
    .focus(function(){
        if ($(this).val() == "الرسالة") {
            $(this).val("");
        }
    })
    .blur(function(){
        if ($(this).val() == "") {
            $(this).val("الرسالة");
        }
    });  
    $("#name")
    .val("الاسم")
    .focus(function(){
        if ($(this).val() == "الاسم") {
            $(this).val("");
        }
    })
    .blur(function(){
        if ($(this).val() == "") {
            $(this).val("الاسم");
        }
    }); 
    $("#email2")
    .val("البريد الإلكتروني")
    .focus(function(){
        if ($(this).val() == "البريد الإلكتروني") {
            $(this).val("");
        }
    })
    .blur(function(){
        if ($(this).val() == "") {
            $(this).val("البريد الإلكتروني");
        }
    }); 
    
 });