function onmouseover_menu_button(id)
{
  if (testt = document.getElementById("menu_l_"+id))
    testt.style.backgroundImage = "url(/imgs/buttons/menu_bb_l.png)";
  if (testt = document.getElementById("menu_c_"+id))
    testt.style.backgroundImage = "url(/imgs/buttons/menu_bb_c.png)";
  if (testt = document.getElementById("menu_r_"+id))
    testt.style.backgroundImage = "url(/imgs/buttons/menu_bb_r.png)";
}

function onmouseout_menu_button(id)
{
  if (testt = document.getElementById("menu_l_"+id))
    testt.style.backgroundImage = "url(/imgs/transparent.png)";
  if (testt = document.getElementById("menu_c_"+id))
    testt.style.backgroundImage = "url(/imgs/transparent.png)";
  if (testt = document.getElementById("menu_r_"+id))
    testt.style.backgroundImage = "url(/imgs/transparent.png)";
}

function onclick_gallery_little_img(file_name, file_description)
{
  if (target = document.getElementById('gallery_pic_img'))
  {
    target.src    = file_name;
    target.title  = file_description;
    if (target = document.getElementById('gallery_pic_description_text'))
      target.innerHTML  = file_description;
  }
}

$('document').ready(function() {
  pic1 = new Image(76,31);	pic1.src = "/imgs/btn_donate_over.jpg";
  $(".img_donate").hover(function(){
     $(this).attr('src',"/imgs/btn_donate_over.jpg");
  }, function(){
     $(this).attr('src',"/imgs/btn_donate.jpg");
  });
  
  $("#giving_submit").hover(function(){
    $(this).attr('src','/imgs/donatebtn_over.jpg');
  }, function(){
    $(this).attr('src','/imgs/donatebtn.jpg');
  })
})



