/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Name: FV3_GetPrimaryBackgroundImage()
// Last Change: 2.15.2007
// Notes: This function will change the background image based on the selected Primary Area
// You must have an element on your page with an ID of primaryAreaBackgroundImage
//----------------------------------------------------------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////////////////////////////////////////

            function FV3_GetPrimaryAreaBackgroundImage()
            {
                        FV3_CheckDefaultSelections();
						if(selectedPrimaryID != -1)
                        {
                                    document.getElementById("primaryAreaBackgroundImage").style.backgroundImage = 'url(navImages/'+selectedPrimaryID+'_slide.jpg)';
                                    document.getElementById("primaryAreaBackgroundImage").style.backgroundRepeat = 'no-repeat';
									document.getElementById("primaryAreaBackgroundImage").style.backgroundPosition = 'right'; 
									document.getElementById("primaryAreaBackgroundImage").style.backgroundColor = '#ffffff';
                        }
            }

