// JavaScript Document

//Codigo para cambiar de imagenes al pasar el mouse
var changetimer;
 
function change(id){
clearInterval(changetimer);
function swap () {
if (id.src.match("-1")) { id.src = id.src.replace("-1","-2"); return false; }
if (id.src.match("-2")) { id.src = id.src.replace("-2","-3"); return false; }
if (id.src.match("-3")) { id.src = id.src.replace("-3","-1"); return false; }
}
changetimer = setInterval(swap,1000);
}
 
window.onload = function() {
var images = document.getElementsByTagName('img');
for (var i = 0; i < images.length; i++) {
images[i].onmouseover = function(evt) {change(this);};
images[i].onmouseout = function(evt) {clearInterval(changetimer);};
}
}
<!-- 
function Pagina_Inicio() 
{ 
obj_Pagina_Inicio.style.behavior='url(#default#homepage)'; 
obj_Pagina_Inicio.setHomePage("http://www.kinestops.com"); 
} 
//--> 

$(function() {	
	$('.chicas').tooltip({
	track: true,
	delay: 0,
	showURL: false,
	showBody: "-+-",
	fade: 250
});
	});
