window.addEvent('domready', function() {
	$('siteManagerButton').addEvent('click',function() {
		location.href = "sitemanager.php";
	});
	$('webHostingButton').addEvent('click',function() {
		location.href = "web_hosting.php";
	});
	$('domainNamesButton').addEvent('click',function() {
		newWin = window.open("http://www.crowndomainregistry.com","newWindow");
		newWin.focus();
	});
	$('resourcesButton').addEvent('click',function() {
		newWin = window.open("http://bookshop.faithforthefamily.com","newWindow");
		newWin.focus();
	});
});