function roundCorners() {
	//lightBlue
	options = {
		border  : true,
		borderColor : "#15275A"
	}
	new Rico.Effect.Round('div', 'LightBlue', options);

	//lightGreen
	options = {
		border  : true,
		borderColor : "#036107"
	}
	new Rico.Effect.Round('div', 'LightGreen', options);
	
	//LightMenu 
	options = {
		border  : true,
		borderColor : "#15275A"
	}
	new Rico.Effect.Round('div', 'LightMenu', options);
	
	//accountTable
	options = {
		border  : true,
		borderColor : "#15275A"
	}
	new Rico.Effect.Round('div', 'accountData', options);

	//darkBlue
	options = {
		border  : false,
		borderColor : "#0A50A1"
	}
	//new Rico.Effect.Round('td', 'darkBlue', options);

	//darkBlueTop
	options = {
        corners : "top",
		border  : false,
		borderColor : "#0A50A1"
	}
	new Rico.Effect.Round('td', 'darkBlueTop', options);

	//darkBlueBottom
	options = {
        corners : "bottom",
		border  : false,
		borderColor : "#0A50A1"
	}
	new Rico.Effect.Round('td', 'darkBlueBottom', options);

	//accountButton
	options = {
		border  : true,
		borderColor : "#000000"
	}
	new Rico.Effect.Round('div', 'accountButton', options);
	
	//accountBottom
	options = {
        corners : "bottom",
		border  : false,
		borderColor : "#859AC8"
	}
	new Rico.Effect.Round('div', 'accountBottom', options);

}

function showimage(imageid, imageurl) {
	imageid.src = "images/" + imageurl;
}
