$(function() {		$('a.port_1').click(function() {				$('#port_1').fadeIn('slow'); 		$('#port_2').fadeOut('fast');		$('#port_3').fadeOut('fast');		$('#port_4').fadeOut('fast');		$('#port_5').fadeOut('fast');		$('#port_6').fadeOut('fast');		$('#port_0').fadeOut('fast');	});	$('a.port_2').click(function() {				$('#port_2').fadeIn('slow'); 		$('#port_1').fadeOut('fast');		$('#port_3').fadeOut('fast');		$('#port_4').fadeOut('fast');		$('#port_5').fadeOut('fast');		$('#port_6').fadeOut('fast');		$('#port_0').fadeOut('fast');	});		$('a.port_3').click(function() {				$('#port_3').fadeIn('slow'); 		$('#port_1').fadeOut('fast');		$('#port_2').fadeOut('fast');		$('#port_4').fadeOut('fast');		$('#port_5').fadeOut('fast');		$('#port_6').fadeOut('fast');		$('#port_0').fadeOut('fast');	});		$('a.port_4').click(function() {				$('#port_4').fadeIn('slow'); 		$('#port_1').fadeOut('fast');		$('#port_2').fadeOut('fast');		$('#port_3').fadeOut('fast');		$('#port_5').fadeOut('fast');		$('#port_6').fadeOut('fast');		$('#port_0').fadeOut('fast');	});		$('a.port_5').click(function() {				$('#port_5').fadeIn('slow'); 		$('#port_1').fadeOut('fast');		$('#port_2').fadeOut('fast');		$('#port_3').fadeOut('fast');		$('#port_4').fadeOut('fast');		$('#port_6').fadeOut('fast');		$('#port_0').fadeOut('fast');			});		$('a.port_6').click(function() {				$('#port_6').fadeIn('slow'); 		$('#port_1').fadeOut('fast');		$('#port_2').fadeOut('fast');		$('#port_3').fadeOut('fast');		$('#port_4').fadeOut('fast');		$('#port_5').fadeOut('fast');		$('#port_0').fadeOut('fast');			});		// services page		$('a.serv_1').click(function() {				$('#serv_1').fadeIn('slow'); 		$('#serv_2').fadeOut('fast');		$('#serv_3').fadeOut('fast');		$('#serv_4').fadeOut('fast');		$('#serv_0').fadeOut('fast');			});	$('a.serv_2').click(function() {				$('#serv_2').fadeIn('slow'); 		$('#serv_1').fadeOut('fast');		$('#serv_3').fadeOut('fast');		$('#serv_4').fadeOut('fast');		$('#serv_0').fadeOut('fast');	});		$('a.serv_3').click(function() {				$('#serv_3').fadeIn('slow'); 		$('#serv_1').fadeOut('fast');		$('#serv_2').fadeOut('fast');		$('#serv_4').fadeOut('fast');		$('#serv_0').fadeOut('fast');	});		$('a.serv_4').click(function() {				$('#serv_4').fadeIn('slow'); 		$('#serv_1').fadeOut('fast');		$('#serv_2').fadeOut('fast');		$('#serv_3').fadeOut('fast');		$('#serv_0').fadeOut('fast');	});		});
