jQuery(document).ready(function(){ var oCommon = new Common(); oCommon.init(); }); function Common(){ } Common.prototype = { init:function(){ this.attachEvents(); }, attachEvents:function(){ jQuery( '.contacts div[class!=\'lang\'][class!=\'name\']' ).hover(function(){ sTemp = jQuery( '.title').eq(0).html(); jQuery( '.title').eq(0).html( jQuery('.scheme').html() ); },function(){ jQuery( '.title').eq(0).html( sTemp ); }); jQuery( '.contacts div[class=\'name\']' ).hover(function(){ sTemp = jQuery( '.title').eq(0).html(); jQuery( '.title').eq(0).html( jQuery( '.contacts div[class=\'name\'] a' ).html() ); },function(){ jQuery( '.title').eq(0).html( sTemp ); }); jQuery( '.contacts div[class=\'address\']' ).click(function(){ oPopup = window.open("", '', "width=650,height=450,status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes"); oPopup.location = '/scheme/'; }); } }