$(document).ready(function(){
   var clicked = "nothing";
	$('#activelink').animate(
	{
		opacity: 0.9,
		backgroundColor: '#046380',
		style: 'text-decoration: none;',
	},
	'slow'
);			
		});
var clicked = '1'
function changetoemail() {
		var clicked = '2'
		if (clicked == '2') {
			$('.content').hide("fast");
			$('.agent').hide("fast");
			$('.manage').hide("fast");
			$('.email').show("slow"); 
		}    
		else {
			$('.content').show("slow");
			$('.agent').hide("fast");
			$('.manage').hide("fast");
			$('.email').hide("fast"); 
		}
};
function changetoagent()  {
      var clicked = '3'   
      if (clicked == '3') {
			$('.content').hide("fast");
			$('.agent').show("slow");
			$('.manage').hide("fast");
			$('.email').hide("fast"); 
		}    
		else {
			$('.content').show("slow");
			$('.agent').hide("fast");
			$('.manage').hide("fast");
			$('.email').hide("fast"); 
		}
};
function changetomanage() {
      var clicked = '4'  
      if (clicked == '4') {
			$('.content').hide("fast");
			$('.agent').hide("fast");
			$('.manage').show("slow");
			$('.email').hide("fast"); 
		}    
		else {
			$('.content').show("slow");
			$('.agent').hide("fast");
			$('.manage').hide("fast");
			$('.email').hide("fast"); 
		}
};
function changetocontent() {
      var clicked = '1'      
      if (clicked == '1') {
			$('.content').show("slow");
			$('.agent').hide("fast");
			$('.manage').hide("fast");
			$('.email').hide("fast"); 
		}    
		else {
			$('.content').show("slow");
			$('.agent').hide("fast");
			$('.manage').hide("fast");
			$('.email').hide("fast"); 
		}
};