$(document).ready(function(){ 
	$("a.gan_a").bind("click", function(){
		
		var to_switch = $(this).attr("id");
		to_switch = to_switch.replace('graphic_nav_', '');
		
		$(this).addClass("selected").parent().parent().find("a.gan_a").not(jQuery(this)).removeClass("selected");
		
		$("#ga_holder").fadeOut("slow",function(){

			$('a.gan').removeClass("show");
			$("a#graphic_area_" + to_switch).addClass("show");
			$("#ga_holder").fadeIn("slow");

		});
		
		return false;
		
	});
});