diff --git a/indefero/src/IDF/templates/idf/main-menu.html b/indefero/src/IDF/templates/idf/main-menu.html
index 0cc1b6e..3f6a73c 100644
--- a/indefero/src/IDF/templates/idf/main-menu.html
+++ b/indefero/src/IDF/templates/idf/main-menu.html
@@ -13,7 +13,7 @@
 {if $allProjects.count() != 0}
 
 
@@ -26,10 +26,6 @@
 {literal}
 $(document).ready(function() {
 
-    $("#prjname").on("click", function() {
-       if ($("#prjname").val() == "Project Name...")
-           $("#prjname").val("");
-    });
 
     $("#prjname").keydown(function(ev) {
         if(ev.which === 13) {
@@ -54,6 +50,7 @@ $(document).ready(function() {
 
   $('#project-list').bind('mouseenter', function(ev) {
     $(this).find('ul').show();
+      $("#prjname").focus();
   }).bind('mouseleave', function(ev) {
     $(this).find('ul').hide();
   });