jQuery(function(){

jQuery("input[type='text']").focus(function(){
    // Select field contents
    this.select();
     jQuery(this).val('');
});

adjustTopMenuWidth();
  

});

function adjustTopMenuWidth() {
 distance_between_top_menu_items = 7;

 jQuery("#pages li").each(function(idx,el) {
 jQuery(el).width(distance_between_top_menu_items+jQuery(el).width() +'px');
 //el.style.border="1px solid red";
 });  
} 
