disculpen, pero si es posible, el css 3 permite cambiar la barra de navegación
Código:
/* Scrollbar */
::-webkit-scrollbar
{
height: 20px;
overflow: visible;
width: 10px;
}
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal
{
background-color: rgba(0, 0, 0, .4);
background-clip: padding-box;
border-radius: 5px;
cursor: pointer;
display: block;
min-height: 30px;
}
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover
{
background-color: rgba(0, 0, 0, .8);
}
::-webkit-scrollbar-button
{
height: 0;
width: 0;
}
::-webkit-scrollbar-track
{
background-clip: padding-box;
border-width: 0 0 0 4px;
border: solid transparent;
}
::-webkit-scrollbar-track:hover
{
background-color: #F5F5F5;
}
::-webkit-scrollbar-track-piece
{
background-clip: padding-box;
background-color: white;
}
::-webkit-scrollbar-track-piece:hover
{
background-color: #F5F5F5;
}
Este es un ejemplo, aquí hay un demo : http://infosmart.mx saludos Jg.