/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
    $('#phone_num').focus( function(){
        if($(this).val() == 'введите номер вашего телефона') {
            $(this).val('');
        }
    } );
    $('#phone_num').blur( function(){
    if( $(this).val() == '' ) {
        $(this).val('введите номер вашего телефона');
    } }
);
} );
