$(function() {
	
	$('#privacy').hide();
	
	$('#privacyToggle').click(function() {
		$('#privacy').slideToggle();
	});
	
	$('li').hover(
		function () {
			$('div', $(this)).animate(
				{
					'background-color': '#fff'
				},
				{ 'duration' : 200 }
			);
			$(this).animate(
				{
					'color': '#000',
					'margin-left': 5,
				},
				{
					'duration': 100
				}
			)
		},
		function () {
			$('div', $(this)).animate(
				{
					'background-color': '#efeee2'
				},
				{ 'duration' : 200 }
			);			
			$(this).animate(
				{
					'color': '#444',
					'margin-left': 0
				},
				{
					'duration': 100
				}
			)
		}
	)
});

