function remap(){
	$('#container').css({
		'top':($('body').height() - $('#container').height())/2+"px",
		'left':($('body').width() - $('#container').width())/2+"px",
		'position':'absolute'
	});
}

$(function(){
	$('audio').mediaelementplayer();
	remap();
});

$(window).resize(function(){
	remap();
})
