	//Animation for the Twitter Slide Function
		$(function() {
			$('#twitter-button').stop().click(function() {
				$('#slide-box').stop().animate ({ "left" : "2px" },200);
				$('#twitter-button-white').css('top', '0px');
				$('#twitter-button-grey').css('top', '-36px');
				
				$('#events-button-white').css('top', '-36px');
				$('#events-button-grey').css('top', '0px');
				
				$('#contact-button-white').css('top', '-36px');
				$('#contact-button-grey').css('top', '0px');
				
			});
			$('#events-button').stop().click(function() {
				$('#slide-box').stop().animate ({ "left" : "-235px" },200);
				$('#twitter-button-white').css('top', '-36px');
				$('#twitter-button-grey').css('top', '0px');
				
				$('#events-button-white').css('top', '0px');
				$('#events-button-grey').css('top', '-36px');
				
				$('#contact-button-white').css('top', '-36px');
				$('#contact-button-grey').css('top', '0px');
					
			});
			$('#contact-button').stop().click(function() {
				$('#slide-box').stop().animate ({ "left" : "-470px" },200);
				$('#twitter-button-white').css('top', '-36px');
				$('#twitter-button-grey').css('top', '0px');
				
				$('#events-button-white').css('top', '-36px');
				$('#events-button-grey').css('top', '0px');
				
				$('#contact-button-white').css('top', '0px');
				$('#contact-button-grey').css('top', '-36px');	
			});
		});
