$(document).ready(function(){
   
    $('input').focus(function(){
        if( $('.nome').attr('value') == "Nome")
		{
            $(this).attr('value','');
        } 
		if( $('.email').attr('value') == "E-mail")
		{
            $(this).attr('value','');
        } 
    });
    $('input').blur(function(){
        if ($('.nome').attr('value') == '')
        {
            $(this).attr('value', 'Nome');
        }
		if ($('.email').attr('value') == '')
        {
            $(this).attr('value', 'E-mail');
        }
    })
});