Write a jQuery application to animate a div. Move it from
x=0,y=0 to x=1024,y=768, and back again. Note that you will need to give
your div a set of initial properties in the CSS, as otherwise, jQuery will
be unable to read its properties. For example:
#div1
{
top: 0px;
left: 0px;
width: 400px;
height: 400px;
position: absolute;
}