// JavaScript Document
function check(){
	if ($("#main").parent().css("width") <= 780){
		$("#container").css("left","0px");
		$("#main").css("left","0px");
	} else {
		$("#container").css("left","50%");
		$("#main").css("left","-390px");
	}
	if ($("#container").parent().css("height") <= 550){
		$("#container").css("top","0px");
		$("#main").css("top","0px");
	} else {
		$("#container").css("top","50%");
		$("#main").css("top","-275px");
	}
}
$(document).ready(function(){
  /* register any elements that need change */ 
	check();
	$(document).resize(function(e){
		check();
	});
});