StylePage = {

	property : ['id','class','bgImg'],
	//className
	classNames : ['plus_hover','bplus','minus_hover','bminus','spam_hover','spam','unspam_hover','unspam','hide','nohide'],
	//Id
	Ids : ['searchsover','searchs','surpmeover','surpme','ask','askhover','green','blue'],
	//backgroundImage
	bgImgs : ['url(../img/admin/button_hover.gif)','url(../img/admin/button.gif)'],

	onButton : function (fld,type,property)
	{
		if (type == 'id')
		{
			fld.id = property
		}
		if (type == 'class')
		{
			fld.className = property
		}
		if (type == 'bgImg')
		{
			fld.style.backgroundImage = property
		}
	}
	
}

