var $this = $(':text');
function showList(){
$(document).unbind("click.gavnoplugin").bind("click.gavnoplugin", function(e){
if ( e.target !== $this.get(0) ){ $('ul').hide() };
});
$('ul').show()
.children('li').unbind("click.gavnoplugin").bind("click.gavnoplugin", function( e ){
e.stopPropagation();
alert('Selected ME');
});
}
$this.delegate( 'focusin', showList );