window.onload=function(){
if(!NiftyCheck())
    return;
Rounded("div#contactinfo","all","#CCCCCC","#999999","smooth");
Rounded("div#main","all","#1100AA","#CCCCCC","smooth");
Rounded("div#comment","all","#CCCCCC","#666666","smooth");
}
//asynchronous javascript->php remote script..
function loadContent(file){
  var head = document.getElementsByTagName('head').item(0)
  var scriptTag = document.getElementById('loadScript');
  if(scriptTag) head.removeChild(scriptTag);
  script = document.createElement('script');
  script.src = file;
	script.type = 'text/javascript';
	script.id = 'loadScript';
	head.appendChild(script)
							 }