/*JavaScript Document*/
function changeNav(){
        if (document.getElementById('home')){
/*			document.getElementById('homeButton').src="images/highlight_home.jpg";*/
			document.getElementById('homeButton').className = "hightlight_home";
			document.getElementById('fFront').style.color="#003300";	
		}
        if (document.getElementById('services')) {
/*			document.getElementById('servicesButton').src="images/highlight_service.jpg";*/
			document.getElementById('servicesButton').className = "hightlight_service";
			document.getElementById('fServices').style.color="#003300";				
		}
        if (document.getElementById('about_me')) {
/*			document.getElementById('aboutButton').src="images/highlight_about.jpg";*/
			document.getElementById('aboutButton').className = "hightlight_about";	
			document.getElementById('fAbout').style.color="#003300";
		}
        if (document.getElementById('portfolio')) {
/*			document.getElementById('portfolioButton').src="images/highlight_portfolio.jpg";*/
			document.getElementById('portfolioButton').className = "highlight_portfolio";
			document.getElementById('fPortfolio').style.color="#003300";	
			docClickLoader.loadInto('web_portfolio1.asp', 'targetArea');
		}
        if (document.getElementById('goodies')) {
/*			document.getElementById('goodiesButton').src="images/highlight_goodies.jpg";*/
			document.getElementById('goodiesButton').className = "hightlight_goodies";			
			document.getElementById('fGoodies').style.color="#003300";				
		}
        if (document.getElementById('contact_me')) {
/*			document.getElementById('contactButton').src="images/highlight_contact.jpg";*/
			document.getElementById('contactButton').className = "highlight_contact";						
			document.getElementById('fContact').style.color="#003300";
		}
		new Effect.Appear('headerImage', {duration:1.0, from: 0.0, to: 5.0}); return false;
	}
    window.onload=changeNav;