/*****************************************************
 Autor: Eduard Diaz
 Direccion: http://www.edudiaz.net
 Licencia:GPL
 Descripción:
 Funciones javascript para la web de Joiells, 
 www.joiells.com
******************************************************/

subopcionHover = function() {
	var sfEls = document.getElementById("menu_colecciones");
	sfEls.onmouseover=function() {this.className+=" sfhover";}
	sfEls.onmouseout=function() {this.className=this.className.replace(new RegExp(" sfhover\\b"), "");}
}
if (window.attachEvent) window.attachEvent("onload", subopcionHover);
