// Rounded Corner Elements

// You may use RoundedBottom, Rounded, and RoundedTop
// Obviously, this rounds the bottom of the element,
// the entire element, or the top of the element.

// The order structure is laid out like this:
// 1. element/id, 2. border-color, 3. background-color

window.onload=function(){
	if(!RoundCheck()) return;
		RoundedBottom("div#navbottom","transparent","#525252");
		Rounded("div#moduleInfo","transparent","#525252");
		RoundedTop("div#footertop","transparent","#525252");
}

// end Rounded Corner Elements