var x = readCookie('location');
var loc;
if (x != null) {
	x = x.replace(/\s/g, "");
	x = x.toLowerCase();
	loc = "/" + x;
} else {
	loc = "";
}
openPage = function(y) {
	switch(y) {
		case 0:
			location.href = "http://www.evenflowplumbing.com/plumbers" + loc + "/plumber.htm";
			break;
		case 1:
			location.href = "http://www.evenflowplumbing.com/plumbers" + loc + "/plumbing.htm";
			break;
		case 2:
			location.href = "http://www.evenflowplumbing.com/plumbers" + loc + "/sewer.htm";
			break;
		case 3:
			location.href = "http://www.evenflowplumbing.com/plumbers" + loc + "/drain.htm";
			break;
		case 4:
			location.href = "http://www.evenflowplumbing.com/plumbers" + loc + "/trenchless.htm";
			break;
		case 5:
			location.href = "http://www.evenflowplumbing.com/plumbers" + loc + "/rooter.htm";
			break;
	}
}
