function run_biggallery(){ var imgs = $('.gallery p a img'); var bord = $('#border'); imgs.mouseover(function (){ var pos = $(this).position(); var w = $(this).width() - 8; var h = $(this).height() - 8; if ($.browser.msie && ($.browser.version == 6 || $.browser.version == 7)) { w = w + 4; h = h + 4; } $(this).after(bord); bord.css({ left: pos.left, top: pos.top + 5, width: w, height: h, border: '4px solid #4bc2f6', position: 'absolute', zIndex: 100, display: 'block', cursor: 'pointer', background: 'transparent url(/i/bgcenter.gif) 0 0 repeat' }); }); bord.mouseout(function (){ bord.css('display', 'none'); }); }