$(window).load(function(){
	$('.round').each(round);
});

function round() {
	var topLeft = document.createElement('div');
	var botLeft = document.createElement('div');
	var topRight = document.createElement('div');
	var botRight = document.createElement('div');
	
	var divs = new Array(topLeft, botLeft, topRight, botRight);
	for(var d in divs){
		this.appendChild(divs[d]);
	}	

	for(var d in divs){
		divs[d].style.height = "1px";						
		divs[d].style.width = "1px";
		divs[d].style.backgroundColor = "#ff7073";
		divs[d].style.position = "absolute";
	}

	topLeft.style.top = "0";
	topLeft.style.left = "0";

	
	botLeft.style.bottom = "0";
	botLeft.style.left = "0";
	
	topRight.style.top = "0";
	topRight.style.right = "0";
	
	botRight.style.bottom = "0";
	botRight.style.right = "0";
}