jQuery(document).ready(function(){ var oGallery = new Gallery(); oGallery.init(); }); function Gallery(){ } Gallery.prototype = { init:function(){ this.attachEvents(); }, attachEvents:function(){ _my = this; jQuery( '.press a' ).click(function(){ oImg = jQuery( 'img', this ); iWidth = oImg.attr( 'alt' ).replace( /x.+/, '' ); iHeight = oImg.attr( 'alt' ).replace( /.+x/, '' ); oPopup = window.open("", '', "width=" + iWidth +",height=" + iHeight +",status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes"); oPopup.location = oImg.attr('src').replace(/\-s/, ''); return false; }); } }