// JavaScript Document

function openPage(page){
	switch(page){
		case "h" : location.href="index.html" ;break;
		case "s" : location.href="services.html" ;break;
		case "p" : location.href="portfolio.html" ;break;
		case "c" : location.href="contact-us.html" ;break;		
		default : location.href="index.html" ;break;
	}
}

function doLoad(){
}

