gImgArr = new Array();
gImgArr['video'] = new Image();
gImgArr['video'].src = '/images/buttons/see_video_btn.gif';
gImgArr['photos'] = new Image();
gImgArr['photos'].src = '/images/buttons/see_photos_btn.gif';
gImgArr['dogtales'] = new Image();
gImgArr['dogtales'].src = '/images/buttons/dogtales_btn.gif';
gImgArr['store'] = new Image();
gImgArr['store'].src = '/images/buttons/store_btn.gif';
gImgArr['art'] = new Image();
gImgArr['art'].src = '/images/buttons/see_art_btn.gif';
gImgArr['music'] = new Image();
gImgArr['music'].src = '/images/buttons/music_btn.gif';
gImgArr['events'] = new Image();
gImgArr['events'].src = '/images/buttons/events_btn.gif';
gImgArr['news'] = new Image();
gImgArr['news'].src = '/images/buttons/news_btn.gif';
gImgArr['advertisers'] = new Image();
gImgArr['advertisers'].src = '/images/buttons/advertisers_btn.gif';
gImgArr['investors'] = new Image();
gImgArr['investors'].src = '/images/buttons/investors_btn.gif';
gImgArr['aboutus'] = new Image();
gImgArr['aboutus'].src = '/images/buttons/aboutus_btn.gif';
gImgArr['reachus'] = new Image();
gImgArr['reachus'].src = '/images/buttons/reachus_btn.gif';
gImgArr['home'] = new Image();
gImgArr['home'].src = '/images/buttons/home_btn.gif';
gImgArr['getplayer'] = new Image();
gImgArr['getplayer'].src = '/images/buttons/getplayer_btn.gif';
gImgArr['uploadvideo'] = new Image();
gImgArr['uploadvideo'].src = '/images/buttons/upload_here_btn.gif';

gImgArrOn = new Array();
gImgArrOn['video'] = new Image();
gImgArrOn['video'].src = '/images/buttons/see_video_btn_over.gif';
gImgArrOn['photos'] = new Image();
gImgArrOn['photos'].src = '/images/buttons/see_photos_btn_over.gif';
gImgArrOn['dogtales'] = new Image();
gImgArrOn['dogtales'].src = '/images/buttons/dogtales_btn_over.gif';
gImgArrOn['store'] = new Image();
gImgArrOn['store'].src = '/images/buttons/store_btn_over.gif';
gImgArrOn['art'] = new Image();
gImgArrOn['art'].src = '/images/buttons/see_art_btn_over.gif';
gImgArrOn['music'] = new Image();
gImgArrOn['music'].src = '/images/buttons/music_btn_over.gif';
gImgArrOn['events'] = new Image();
gImgArrOn['events'].src = '/images/buttons/events_btn_over.gif';
gImgArrOn['news'] = new Image();
gImgArrOn['news'].src = '/images/buttons/news_btn_over.gif';
gImgArrOn['advertisers'] = new Image();
gImgArrOn['advertisers'].src = '/images/buttons/advertisers_btn_over.gif';
gImgArrOn['investors'] = new Image();
gImgArrOn['investors'].src = '/images/buttons/investors_btn_over.gif';
gImgArrOn['aboutus'] = new Image();
gImgArrOn['aboutus'].src = '/images/buttons/aboutus_btn_over.gif';
gImgArrOn['reachus'] = new Image();
gImgArrOn['reachus'].src = '/images/buttons/reachus_btn_over.gif';
gImgArrOn['home'] = new Image();
gImgArrOn['home'].src = '/images/buttons/home_btn_over.gif';
gImgArrOn['getplayer'] = new Image();
gImgArrOn['getplayer'].src = '/images/buttons/getplayer_btn_over.gif';
gImgArrOn['uploadvideo'] = new Image();
gImgArrOn['uploadvideo'].src = '/images/buttons/upload_here_btn_over.gif';


function menuHighlight (pImgId, pHighLight) 
{
	if (pHighLight)
	{
		document.getElementById(pImgId).src = gImgArrOn[pImgId].src;
	}
	else
	{
		document.getElementById(pImgId).src = gImgArr[pImgId].src;
	}
	
	return true;
}