$("document").ready(function() {
		$(".illo_ul").css("display", "none");
		$(".install_ul").css("display", "none");
		$(".newWork_ul").css("display", "none");
		$(".homeImage").css("display", "block");
/*Buttons to load and hide ULs */	
	$("#home").click(function() {
		$(".illo_ul").css("display", "none");
		$(".install_ul").css("display", "none");
		$(".newWork_ul").css("display", "none");
		$(".homeImage").css("display", "block");
	});
	$("#newWork").click(function() {
		$(".illo_ul").css("display", "none");
		$(".install_ul").css("display", "none");
		$(".newWork_ul").toggle("slow");
		$(".homeImage").css("display", "none");
	});
	$("#illo").click(function() {
		$(".newWork_ul").css("display", "none");
		$(".install_ul").css("display", "none");
		$(".illo_ul").toggle("slow");
		$(".homeImage").css("display", "none");
	});
	$("#install").click(function() {
		$(".illo_ul").css("display", "none");
		$(".newWork_ul").css("display", "none");
		$(".install_ul").toggle("slow");
		$(".homeImage").css("display", "none");
	});
	$("#archive").click(function() {
		$(".newWork_ul").css("display", "none");
		$(".install_ul").css("display", "none");
		$(".illo_ul").css("display", "none");
		$(".homeImage").css("display", "none");
	});
});