window.addEvent('domready', function() {
	$("iContent").addEvent("load",function(){
		this.setStyle("height",(frames["iContent"].document.body.scrollHeight+1) + "px");
	});
	$("iContent").setStyle("height",(frames["iContent"].document.body.scrollHeight+1) + "px");
	var menus = $$("#menu_td a");
	menus.each(function(menu,i) {
		menu.addEvent("mouseenter",function(){
			this.setStyle("color","#CC0066");
		});
		menu.addEvent("mouseleave",function(){
			this.setStyle("color","#333333");
		});
		menu.addEvent("click",function(){
			this.removeEvents("mouseleave");
			menus.each(function(other, j) {
				if(i != j) {
					other.setStyle("color","#333333");
					other.addEvent("mouseleave",function(){
						this.setStyle("color","#333333");
					});
				};
			});
		});
	});
});

