Array.prototype.inArray = function (value) { var i; for (i=0; i < this.length; i++) { if (this[i] == value) { return true; } } return false; }; Array.prototype.inArrayStrict = function (value) { var i; for (i=0; i < this.length; i++) { if (this[i] === value) { return true; } } return false; }; function swapMainMenu( id, selected ) { menu_img = document.getElementById(id); if( selected ) { menu_img.src = 'http://nikitoss.com/i/'+id+'_act.gif'; } else { menu_img.src = 'http://nikitoss.com/i/'+id+'.gif'; } } function openPic(image, width, height) { var win; if( win ) { win.close(); } win = window.open( '', 'win', 'location=0, toolbar=0, menubar=0, scrollbars=yes, height='+height+', width='+width+', status=0' ); win.document.write( '