/***** EFECTO DE ZOOM EN LOS BOTONES *******/ 
$(document).ready( function(){

$(".efecto_zoom").mouseover(function(){
  $(this).animate({
    width: "225px",
	height: "105px"
  }, 200 );
});

$(".efecto_zoom").mouseout(function(){
  $(this).animate({
    width: "222px",
	height: "100px"
  }, 200 );
});

$(".efecto_zoom_menu_consulta").mouseover(function(){
  $(this).animate({
    width: "219px",
	height: "43px"
  }, 200 );
});

$(".efecto_zoom_menu_consulta").mouseout(function(){
  $(this).animate({
    width: "222px",
	height: "47px"
  }, 200 );
});

$('.numeric').bind('keypress',function(e){ 
  	if (e.which <= 13 || (e.which >= 48 && e.which <= 57)) {
		return true;
	}
	else {
		e.preventDefault();
	}
});

});





