$(document).ready(function() {
    $("#name").attr("value", "Ваше имя");
	$("#email").attr("value", "Ваш email");
	$("#domain").attr("value", "Ваш сайт");
	$("#keys").attr("value", "Ключевые слова");
	$("#captha").attr("value","Введите код с картинки");
	
    var text1 = "Ваше имя";
	var text2 = "Ваш email";
	var text3 = "Ваш сайт";
	var text4 = "Ключевые слова";
	var text5 = "Введите код с картинки";


    $("#name").focusin(function() {

        if($(this).attr("value") == text1) 
			{
			$(this).attr("value", "");
			}
			
    });
	$("#name").focusout(function() {

        if($(this).attr("value") == "") 
			{
			$(this).attr("value", "Ваше имя");
			}
    });
	 $("#email").focusin(function() {

        if($(this).attr("value") == text2) 
			{
			$(this).attr("value", "");
			}
    });
	$("#email").focusout(function() {

        if($(this).attr("value") == "") 
			{
			$(this).attr("value", "Ваш email");
			}
    });
    $("#domain").focusin(function() {

        if($(this).attr("value") == text3) 
			{
			$(this).attr("value", "");
			}
    });
	$("#domain").focusout(function() {

        if($(this).attr("value") == "") 
			{
			$(this).attr("value", "Ваш сайт");
			}
    });
	$("#keys").focusin(function() {

        if($(this).attr("value") == text4) 
			{
			$(this).attr("value", "");
			}
    });
	$("#keys").focusout(function() {

        if($(this).attr("value") == "") 
			{
			$(this).attr("value", "Ключевые слова");
			}
    });
	
	
	 $("#captha").focusin(function() {

        if($(this).attr("value") == text5) 
			{
			$(this).attr("value", "");
			}
    });
	$("#captha").focusout(function() {

        if($(this).attr("value") == "") 
			{
			$(this).attr("value", "Введите код с картинки");
			}
    });
	
	
	
   
});
