$(document).ready(function() {

  // coloring items of top menu
  $("div.menu li:not(.sel)").hover(
    function(){$(this).css("background-color","#67562c");},
    function(){$(this).css("background-color","transparent");}
  );

  // coloring items of top menu
  $("div.menu li:not(.sel) a").hover(
    function(){$(this).parent("li").css("background-color","#67562c");},
    function(){$(this).parent("li").css("background-color","transparent");}
  );

  // 
  $("div.menu li:not(.sel)").click(
    function(){document.location = $(this).children("a").attr("href");}
  );

  // coloring Submit button
  $(".submitForm").hover(
    function(){$(this).addClass("submitForm_h");},
    function(){$(this).removeClass("submitForm_h");}
  );
  
  // coloring Add a comment button
  $(".add_c").hover(
    function(){$(this).addClass("add_c_h");},
    function(){$(this).removeClass("add_c_h");}
  );

});
