/* Function : To handle OnMouseOver Event of the tabs in Section 001 : Health Tools and Resources  in Homepage 
 * START
 */
 
function fnSection001_mouseover(s_code)
{
var td_src="page_td_section1_00" + s_code;
var td_subsrc="page_td_section1_sub_00"+s_code;
var img_src="Page_arrimg_00" + s_code;
document.getElementById(td_src).className='page_sectionsubtitle_001_hover';
document.getElementById(td_subsrc).className='page_sectionsubtitle_001_hover';
document.images(img_src).src='images\\arrow_active.gif';
}
/* END
 * Function : To handle OnMouseOver Event of the tabs in Section 001 : Health Tools and Resources  in Homepage 
 */

/* Function : To handle OnMouseOUT Event of the tabs in Section 001 : Health Tools and Resources  in Homepage 
 * START
 */
 
function fnSection001_mouseout(s_code)
{
var td_src="page_td_section1_00" + s_code;
var td_subsrc="page_td_section1_sub_00"+s_code;
var img_src="Page_arrimg_00" + s_code;

document.getElementById(td_src).className='page_sectionsubtitle_001';
document.images(img_src).src='images\\arrow_inactive.gif';
document.getElementById(td_subsrc).className='page_sectionsubtitle_001';
}
/* END
 * Function : To handle OnMouseOUT Event of the tabs in Section 001 : Health Tools and Resources  in Homepage 
 */
