$(document).ready(function() {
	
  $('input').focus(function() {
	  $(this).parent().children('span').show();
  });

  $('input').blur(function() {
  	$(this).parent().children('span').hide();
  });
            
	// Confirmation
	$('a[@name=confirm]').click(function() {
		ans = confirm('Are you sure?');
		if(!ans) return false;
		return true;
	});
	$('input[@name=confirm]').click(function() {
		ans = confirm('Are you sure?');
		if(!ans) return false;
		return true;
	});
});