Move wordpress sidebar on homepage up to new position

The best way is to move <div id="side"> outside of <div id="content">, so that you can properly position it next to the slider (<div id="lof-container">). Alternatively, you could do it with

#maincontent { overflow: visible; }
#side { margin-top: -300px; }

though this is pretty hackish.