/* ========= MENU =============*/			
			welcome_off = new Image(34,51)
			welcome_off.src = "images/wtwa_12.jpg"
			welcome_on = new Image(34,51)
			welcome_on.src = "images/wtwa_12_on.jpg"
			
			portfolio_off = new Image(34,54)
			portfolio_off.src = "images/wtwa_14.jpg"
			portfolio_on = new Image(34,54)
			portfolio_on.src = "images/wtwa_14_on.jpg"
			
			about_off = new Image(34,59)
			about_off.src = "images/wtwa_15.jpg"
			about_on = new Image(34,59)
			about_on.src = "images/wtwa_15_on.jpg"
			
			contact_off = new Image(34,63)
			contact_off.src = "images/wtwa_16.jpg"
			contact_on = new Image(34,63)
			contact_on.src = "images/wtwa_16_on.jpg"
			
			function WelcomeOn() {
			document.welcome.src = welcome_on.src; return true;
			}
			function WelcomeOff() {
			document.welcome.src = welcome_off.src; return true;
			}
			
			function PortfolioOn() {
			document.portfolio.src = portfolio_on.src; return true;
			}
			function PortfolioOff() {
			document.portfolio.src = portfolio_off.src; return true;
			}
			
			function AboutOn() {
			document.about.src = about_on.src; return true;
			}
			function AboutOff() {
			document.about.src = about_off.src; return true;
			}
			
			function ContactOn() {
			document.contact.src = contact_on.src; return true;
			}
			function ContactOff() {
			document.contact.src = contact_off.src; return true;
			}
/* ================= MENU END ============ */