// Function to create the rounded corners of the orange buttons
	function createButtons()
	{
		// Find all buttons on the page
		var elems = getElementsByClassName("btn");
		var subelems = getElementsByClassName("btn-sub");
		
		// Add the "btn-sub" items to the elems array
		for (var j = 0; j < subelems.length; j++)
		{
			elems.push(subelems[j]);
		}
		
		// Loop through all the buttons and add the source to create the rounded corners
		for (var i = 0; i < elems.length; i++)
		{
			var HTML = '';
			
			HTML += '<div class="btn-tl">';
			HTML += '<div class="btn-tr">';
			HTML += '<div class="btn-bl">';
			HTML += '<div class="btn-br">';
			HTML += elems[i].innerHTML;
			HTML += '</div>';
			HTML += '</div>';
			HTML += '</div>';
			HTML += '</div>';
			
			elems[i].innerHTML = HTML;
		}
	}

createButtons();