
if(URL_PREFIX == undefined || !URL_PREFIX) var URL_PREFIX = './';
var _pages_conf = {
	home : URL_PREFIX+'',
	services : URL_PREFIX+'services.php',
	beauty : URL_PREFIX+'beauty.php',
	aboutus : URL_PREFIX+'aboutus.php',
	wedding : URL_PREFIX+ 'wedding.php',
	support : URL_PREFIX+ 'support.php',
	contactus: URL_PREFIX+'contactus.php',
}
function goPage (val){
	if(_pages_conf[val])
		location.href = _pages_conf[val];
}