$(document).ready(function(){
    $(".first").addClass("contact-current");
    $(".contact-second").hide();
    $(".contact-third").hide();
    
	$(".first").click(function(){
		$(".contact-first").show();
		$(".contact-second").hide();
		$(".contact-third").hide();
		$(".first").addClass("contact-current");
		$(".third").removeClass("contact-current");
		$(".second").removeClass("contact-current");
		
	});	
	$(".second").click(function(){
		$(".contact-second").show();
		$(".contact-first").hide();
		$(".contact-third").hide();
		$(".first").removeClass("contact-current");
		$(".third").removeClass("contact-current");
		$(".second").addClass("contact-current");
	});	
	
	$(".third").click(function(){
		$(".contact-third").show();
		$(".contact-first").hide();
		$(".contact-second").hide();
		$(".first").removeClass("contact-current");
		$(".second").removeClass("contact-current");
		$(".third").addClass("contact-current");
	});		
	
});
