$(function() {
   	jQuery( function(){
	  $( 'input[type="text"]' ).each( function(){
	    $(this).attr( 'val', $(this).val() )
	      .focus( function(){
	        if ( $(this).val() == $(this).attr('val') ) {
	          $(this).val( '' );
	        }
	      } ).blur( function(){
	        if ( $(this).val() == '' || $(this).val() == ' ' ) {
	          $(this).val( $(this).attr('val') );
	        }
	      } );
	  } );
	} );
	
	$('#11keysSubmit').click( function( event ){
		$(this).parents('form').submit();
		event.preventDefault();
	});
});
