$(document).ready(function() {

  // coloring items of left menu
  $("#navigation a img").hover(
    function() {image_old=$(this).attr("src");image_old=image_old.substring(0,image_old.length-4);$(this).attr("src",image_old+"_hover.gif");},
    function() {image_old=$(this).attr("src");image_old=image_old.substring(0,image_old.length-10);$(this).attr("src",image_old+".gif");}
  );

$("#navigation a img").each(function()
  {
    image_old=$(this).attr("src");
    image_old=image_old.substring(0,image_old.length-4);
    $(this).css("background-image","url("+image_old+"_hover.gif)");
    $(this).css("background-position","left top");
  });

  $("#left-menu ul.menu li:not(.sel)").hover(
    function() {$(this).css("background-color","#f5ebbc");},
    function() {$(this).css("background","none");}
  );

  // hovering for the search button.
/*  $(".searchFieldButton > input").hover(
    function(){$(this).attr("class","hover");},
    function(){$(this).attr("class","");}
  );*/

  // hovering Share This kiosk
  $(".share_text").hover(shareHover,shareHover);

});
