I have a fixed position div with a fixed height/width.
The div is positioned using
position: fixed;
left = 50%; margin-left = -(width/2) top = 50%; margin-top: = -(width/2)
The div has a black background.
What I want to do is, when a button is pressed calculate the size of the new contents (hidden dom element)
Fade the contents of the div out, animate it resizing to the new contents size (staying centered).
Fade the new contents in.
What is the easiest way to do this with jQuery?
