function cambio(){
	$('.bot_entrar').hover(
	function(){
    	$(this).attr('src','imagenes/bot_entrar_over.gif');
     },
	 function () {
    	$(this).attr('src','imagenes/bot_entrar.gif');
  	 }	 
	 );	
	 $('.bot_enter').hover(
	function(){
    	$(this).attr('src','imagenes/bot_enter_over.gif');
     },
	 function () {
    	$(this).attr('src','imagenes/bot_enter.gif');
  	 }	 
	 );	
	 $('.bot_entree').hover(
	function(){
    	$(this).attr('src','imagenes/bot_entree_over.gif');
     },
	 function () {
    	$(this).attr('src','imagenes/bot_entree.gif');
  	 }	 
	 );	
}

