$(document).bind("ready",function(){
$("#botonq").hover(
  function () {
    $(this).attr("src","images/BotonOver_01.jpg");
  }, 
  function () {
    $(this).attr("src","images/BotonNormal_01.jpg");
  });

$("#botonh").hover(
  function () {
    $(this).attr("src","images/BotonOver_02.jpg");
  }, 
  function () {
    $(this).attr("src","images/BotonNormal_02.jpg");
  });

$("#botont").hover(
  function () {
    $(this).attr("src","images/BotonOver_03.jpg");
  }, 
  function () {
    $(this).attr("src","images/BotonNormal_03.jpg");
  });

$("#botonc").hover(
  function () {
    $(this).attr("src","images/BotonOver_04.jpg");
  }, 
  function () {
    $(this).attr("src","images/BotonNormal_04.jpg");
  });

$("#botonco").hover(
  function () {
    $(this).attr("src","images/BotonOver_05.jpg");
  }, 
  function () {
    $(this).attr("src","images/BotonNormal_05.jpg");
  });
								   });// JavaScript Document
