I'm not sure if what you're talking about isn't resolution but dimensions. Usually the two go together, but not always. Isn't it the screen size that's the issue anyway, whether or not the larger image will fit? And the screen size isn't always the window size. If you open the page up on a large screen in a small window, does it have the same problem?
I'd try:
Code:
<script type="text/javascript">
(function($){
$(window).load(function(){
var w = $(window);
if(w.width() > 1279 && w.height() > 959){
$('#sarah').trigger('click.magnify');
}
});
})(jQuery);
</script>
Bookmarks