$(document).ready(function() {
	$("#vhostslink").click(function() {
		$("#vhosts").toggle("slow");
		event.preventDefault();
	});
	$("#dnslink").click(function() {
		$("#dns").toggle("slow");
		event.preventDefault();
	});
	$("#maillink").click(function() {
		$("#mail").toggle("slow");
		event.preventDefault();
	})
	$("#mysqluserslink").click(function() {
		$("#mysqlusers").toggle("slow");
		event.preventDefault();
	})
	$("#mysqllink").click(function() {
		$("#mysql").toggle("slow");
		event.preventDefault();
	})
	$("#ftplink").click(function() {
		$("#ftp").toggle("slow");
		event.preventDefault();
	})
	$("#installerslink").click(function() {
		$("#installers").toggle("slow");
		event.preventDefault();
	})
});

