// JavaScript Document

function loadURL (urlValue) {
	setTimeout(function(){
					window.location.href=urlValue+'.html';
			}, 100);

}

