function rollover() {
  $("#navegador li.selectable img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("_over."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.").join("."));
  });
}

jQuery.preloadImages = function()
{
  
  var preload = new Array();
  for(var i = 0; i<arguments.length; i++)
  {
    preload.push(arguments[i]);
  }
  var img = document.createElement('img');

  $(img).bind('load', function() {
        if(preload[0]) {
            this.src = preload.shift();
        }
    }).trigger('load');

}

$(document).ready(function()  {
    rollover();
});
