You can center DOM elements that are absolutely positioned (horizontally and vertically) by using:
div {
position : absolute;
width : 960px;
height : 500px;
left : 50%;
top : 50%;
margin-top : -250px;
margin-left : -480px;
}
Here is a demo: http://jsfiddle.net/KBHjT/