So this is increasing the size of the image, relative to the original size of the image:
$('img:first').fadeIn('normal').delay(500).animate({'height':'+=20%'}, 1500, 'easeOutQuad');
How do I increase it, to say 80% of the user's window (this should work if the user has an 800px resolution monitor, or 1680px resolution monitor).
Also, how do I 'center' the image in the page. So increase to 80% and center.
Thanks.