$(document).ready(function() {
	
	function removeCurItem() {
		$("#art_team > li").hide();
		$(".selected").removeClass("selected");
	}
	
	function addNewItem(name) {
		$("#" + name).fadeIn();
		$("#" + name + "_link").addClass("selected");		
	}
	
	$('#abby_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("abby")
	});
	
	$('#alix_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("alix")
	});
		
	$('#charlie_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("charlie")
	});
		
	$('#deb_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("deb")
	});
	
	$('#hayley_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("hayley")
	});

	$('#joff_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("joff")
	});

	$('#john_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("john")
	});

	$('#katie_c_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("katie_c")
	});

	$('#katie_l_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("katie_l")
	});

	$('#katie_w_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("katie_w")
	});

	$('#leanne_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("leanne")
	});

	$('#max_link').bind("mouseenter",function(){
		removeCurItem();
		addNewItem("max")
	});

});