$(function()
	{
		if($('body').attr('id') == 'about')
		{
			$('#menuchoice1').css({'top' : '-33px'});
		}
		else
		{
			$('#menuchoice1').hover(function()
			{
				$(this).stop().animate({'top' : '-33px'});
			}, function() 
			{
				$(this).stop().animate({'top' : '0px'});
			});
		}
		
		
		if($('body').attr('id') == 'admissions')
		{
			$('#menuchoice2').css({'top' : '-33px'});
		}
		else
		{
			$('#menuchoice2').hover(function()
			{
				$(this).stop().animate({'top' : '-33px'});
			}, function() 
			{
				$(this).stop().animate({'top' : '0px'});
			});
		}
		
		if($('body').attr('id') == 'academics')
		{
			$('#menuchoice3').css({'top' : '-33px'});
		}
		else
		{
			$('#menuchoice3').hover(function()
			{
				$(this).stop().animate({'top' : '-33px'});
			}, function() 
			{
				$(this).stop().animate({'top' : '0px'});
			});
		}
		
		if($('body').attr('id') == 'studentlife')
		{
			$('#menuchoice4').css({'top' : '-33px'});
		}
		else
		{
			$('#menuchoice4').hover(function()
			{
				$(this).stop().animate({'top' : '-33px'});
			}, function() 
			{
				$(this).stop().animate({'top' : '0px'});
			});
		}
		
		if($('body').attr('id') == 'community')
		{
			$('#menuchoice5').css({'top' : '-33px'});
		}
		else
		{
			$('#menuchoice5').hover(function()
			{
				$(this).stop().animate({'top' : '-33px'});
			}, function() 
			{
				$(this).stop().animate({'top' : '0px'});
			});
		}
		
		if($('body').attr('id') == 'foundation')
		{
			$('#menuchoice6').css({'top' : '-33px'});
		}
		else
		{
			$('#menuchoice6').hover(function()
			{
				$(this).stop().animate({'top' : '-33px'});
			}, function() 
			{
				$(this).stop().animate({'top' : '0px'});
			});
		}
	});