$(function(){
	$('#c a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -250px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500})
		})
});


$(function(){

$('#sumir').attr('value','E-mail');
  $('#sumir').hover(function(){
    if($(this).attr('value')=='E-mail') {
      $(this).attr('value','');
    }
  },function(){
    if($(this).attr('value')=='') {
      $(this).attr('value','E-mail');
    }
  });


});

$(function(){

$('#sumirnome').attr('value','Nome');
  $('#sumirnome').hover(function(){
    if($(this).attr('value')=='Nome') {
      $(this).attr('value','');
    }
  },function(){
    if($(this).attr('value')=='') {
      $(this).attr('value','Nome');
    }
  });


});
