diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb
index d4d671aa9..2e2d91fb1 100644
--- a/app/views/search/index.html.erb
+++ b/app/views/search/index.html.erb
@@ -1,7 +1,7 @@
-<%= form_tag({}, :method => :get) do %>
+<%= form_tag({}, :method => :get, :id => 'search-form') do %>
<%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %>
<%= text_field_tag 'q', @question, :size => 60, :id => 'search-input' %>
<%= javascript_tag "$('#search-input').focus()" %>
@@ -11,13 +11,14 @@
<%= hidden_field_tag 'titles_only', '', :id => nil %>
-
+
+
<% @object_types.each do |t| %>
-
+
<% end %>
-
<%= submit_tag l(:button_submit), :name => 'submit' %>
+
<%= submit_tag l(:button_submit) %>
<% end %>
@@ -50,3 +51,14 @@
<% html_title(l(:label_search)) -%>
+
+<%= javascript_tag do %>
+$("#search-types a").click(function(e){
+ e.preventDefault();
+ $("#search-types input[type=checkbox]").attr('checked', false);
+ $(this).siblings("input[type=checkbox]").attr('checked', true);
+ if ($("#search-input").val() != "") {
+ $("#search-form").submit();
+ }
+});
+<% end %>