function positionSelectDiv() { var xcoord = $(window).width()/2 + 415 - $('#artindex').width(); var locationString = '' + document.location; var coords = { top: locationString.match(/\.asp/) ? 160 : 130, left: xcoord }; $('#artindex').offset(coords); } $(function() { $(window).resize(positionSelectDiv); $(window).resize(); $('#artindex option').each(function () { this.selected = this.value == document.location; }); }); document.write('');