function bExpandir(obj) { $(obj).addClass('expansivel');}function bRecuar(obj) { $(obj).removeClass('expansivel'); }$(function(){ $("#ex.bannerPrincipal").hover(function(){ bExpandir(this); },function(){ bRecuar(this); }); });
