window.onload=function(){


	del = YAHOO.util.Dom.getElementsByClassName('delete', 'input', 'content');
	for(x=0;x<del.length;x++){
		del[x].onmouseover=function() {
			this.style.background='red';
			this.style.color='white';
		}
		del[x].onmouseout=function() {
			this.style.background='white';
			this.style.color='red';
		}
	}
	
	buttons = YAHOO.util.Dom.getElementsByClassName('menu', 'a', 'menu');
	for(x=0;x<buttons.length;x++){
	
	YAHOO.util.Dom.setStyle(buttons[x], "opacity", 0.80);
	
		buttons[x].onmouseover=function() {
			YAHOO.util.Dom.setStyle(this, "opacity", 100);
		}
		buttons[x].onmouseout=function() {
			YAHOO.util.Dom.setStyle(this, "opacity", 0.80);
		}
	}
	
// 	if(NiftyCheck()){
//		RoundedTop("div#container","#363A30","#88a7dd");
//		RoundedBottom("div#container","#363A30","#FAFAFA");
// 	}
}