/**
 * display 样式操作
 * toggle.show(arg string | obj) 展开
 * toggle.hide(arg string | obj) 隐藏
 * toggle.oppose(arg string | obj) 反向操作
 * @verson 20081014 By Amilim
 **/
var toggle = {	
	show : function() {
		for ( i=0; i < arguments.length; i++ ) {
			obj =$(arguments[i]);
			obj.style.display = 'block';	
		}
	},	
	hide : function() {
		for ( i=0; i < arguments.length; i++ ) {
			obj =$(arguments[i]);
			obj.style.display = 'none';	
		}
	},
	oppose : function() {
		for ( i=0; i < arguments.length; i++ ) {
			obj =$(arguments[i]);
			obj.style.display =(obj.style.display != 'none' ? 'none' : 'block' );
		}
	}
}