$(document).ready(function(){
		var test;
		$(".sub_nav").hide();
		$("li#skin a").click(function(){
			$(".sub_nav:visible").slideUp("slow");
			test = $(this).parent();
			$(this).parent().addClass("at");
			$(this).parent().next().slideDown("slow");
			$("#eyes").removeClass("at");
			$("#cheeks").removeClass("at");
			$("#lips").removeClass("at");
			$("#tools").removeClass("at");
			return false;
		});
		$("li#eyes a").click(function(){
			$(".sub_nav:visible").slideUp("slow");
			test = $(this).parent();
			$(this).parent().addClass("at");
			$(this).parent().next().slideDown("slow");
			$("#skin").removeClass("at");
			$("#cheeks").removeClass("at");
			$("#lips").removeClass("at");
			$("#tools").removeClass("at");
			return false;
		});
		$("li#cheeks a").click(function(){
                        $(".sub_nav:visible").slideUp("slow");
                        test = $(this).parent();
                        $(this).parent().addClass("at");
                        $(this).parent().next().slideDown("slow");
                        $("#skin").removeClass("at");
                        $("#cheeks").removeClass("at");
                        $("#lips").removeClass("at");
                        $("#tools").removeClass("at");
                        return false;
                });
		$("li#lips a").click(function(){
			$(".sub_nav:visible").slideUp("slow");
			test = $(this).parent();
			$(this).parent().addClass("at");
			$(this).parent().next().slideDown("slow");
			$("#eyes").removeClass("at");
			$("#cheeks").removeClass("at");
			$("#skin").removeClass("at");
			$("#tools").removeClass("at");
			return false;
		});
		$("li#tools a").click(function(){
			$(".sub_nav:visible").slideUp("slow");
			test = $(this).parent();
			$(this).parent().addClass("at");
			$(this).parent().next().slideDown("slow");
			$("#eyes").removeClass("at");
			$("#cheeks").removeClass("at");
			$("#lips").removeClass("at");
			$("#skin").removeClass("at");
			return false;
		});
	});
