// HEADER LOGIN FORM FIELD FOCUS/BLUR EFFECT
function sectionFocus(fieldName) {
	fieldName.style.background='#8BC6FF url(_images/menu/header-login-input-bg.gif) no-repeat;'
}
function sectionBlur(fieldName,inputImg) {
	intID = int(inputImg);
	fieldName.style.background = (intID == 1) ? "'url(_images/menu/header-login-input-password.gif) no-repeat';" : "'#8BC6FF';" ;
}


// FRONTPAGE TABLE COLUMN HOVER EFFECT
function columnHoverOver(colName,intID) {
	colName.id = 'sectionhover';
	colName.style.background = 'url(_images/menu/section-' + intID + '-bg.jpg) no-repeat';
}
function columnHoverOut(colName) {
	colName.id = '';
	colName.style.background = 'none';
}
