// JavaScript Document$(document).ready( function(){		$("#introductionMs").show();		$("#featuresMs").hide();		$("#systemMonitoringMs").hide();						$("#introductionMsMenu").click( function(){			$("#introductionMs").animate({ width: "820", left: "15"}, "slow");			$("#featuresMs").animate({ width: "20", left: "885"}, "slow");			$("#systemMonitoringMs").animate({ width: "20", left: "885"}, "slow");			$("#introductionMs").show("slow");			$("#featuresMs").hide("slow");			$("#systemMonitoringMs").hide("slow");			return false; });				$("#featuresMsMenu").click( function(){			$("#introductionMs").animate({ width: "20", left: "885"}, "slow");			$("#featuresMs").animate({ width: "820", left: "15"}, "slow");			$("#systemMonitoringMs").animate({ width: "20", left: "885"}, "slow");			$("#introductionMs").hide("slow");			$("#featuresMs").show("slow");			$("#systemMonitoringMs").hide("slow");			return false; });					$("#systemMonitoringMsMenu").click( function(){			$("#introductionMs").animate({ width: "20", left: "885"}, "slow");			$("#featuresMs").animate({ width: "20", left: "885"}, "slow");			$("#systemMonitoringMs").animate({ width: "820", left: "15"}, "slow");			$("#introductionMs").hide("slow");			$("#featuresMs").hide("slow");			$("#systemMonitoringMs").show("slow");			return false; });	});
