$("document").ready(function() {
	$("#drawing").hide();
	$("#painting").hide();
	$("a.sculpture").addClass('active');
	$("#statementList a").click(function() {
		doReveal(this.name);
		return false;
	});
});

function doReveal(theDiv)
{
	switch (theDiv)
	{
		case 'sculpture':
		{
			$("#drawing").fadeOut('slow');
			$("#painting").fadeOut('slow');
			$("a.active").removeClass('active');
			$("a.sculpture").addClass('active');
			$("#sculpture").fadeIn('slow');
			break;
		}
		case 'drawing':
		{
			$("#sculpture").fadeOut('slow');
			$("#painting").fadeOut('slow');
			$("a.active").removeClass('active');
			$("a.drawing").addClass('active');
			$("#drawing").fadeIn('slow');
			break;
		}
		case 'painting':
		{
			$("#sculpture").fadeOut('slow');
			$("#drawing").fadeOut('slow');
			$("a.active").removeClass('active');
			$("a.painting").addClass('active');
			$("#painting").fadeIn('slow');
			break;
		}
		
	}
}

