// Top
$(document).ready(function(){
	swfObjReplace();
});
$(window).resize(function(){
	swfObjReplace();
});


/*
function swfObjReplace() {
	var e = "#parentWrap";
	var left = Math.floor(($(document).width() - $(e).width()) / 2);
	var top  = Math.floor(($(document).height() - $(e).height()) / 2)-20;
	if(top < 0) top = 0;
	
	$(e).css({
		"top": top,
		"left": left
	})
}
*/






