$(document).ready(function() {
	$('#menu a').hover(function() { //mouse in
		$(this).stop().animate({ paddingLeft: '8px', paddingRight: '0px', width: '138px', backgroundColor: '#a8005b', color: '#ffffff'}, 400);
	}, function() { //mouse out
		$(this).stop().animate({ paddingLeft: '8px', paddingRight: '0px', width: '120px', backgroundColor: '#e9eaeb', color: '#a8005b'}, 400);
	});
	
	$('#menu a.expertise').stop().click(function() {
		$('#expertise-sub').stop().slideToggle();
		
	});
	
	$('#expertise-sub a').hover(function() { //mouse in
		$(this).stop().animate({ paddingLeft: '8px', paddingRight: '0px', width: '138px', backgroundColor: '#999999', color: '#ffffff'}, 400);
	}, function() { //mouse out
		$(this).stop().animate({ paddingLeft: '8px', paddingRight: '0px', width: '111px', backgroundColor: '#ffffff', color: '#a8005b'}, 400);
	});
	
	$('#menu a.career').stop().click(function() {
		$('#career-sub').stop().slideToggle();
		
	});
	
	$('#career-sub a').hover(function() { //mouse in
		$(this).stop().animate({ paddingLeft: '8px', paddingRight: '0px', width: '138px', backgroundColor: '#999999', color: '#ffffff'}, 400);
	}, function() { //mouse out
		$(this).stop().animate({ paddingLeft: '8px', paddingRight: '0px', width: '120px', backgroundColor: '#ffffff', color: '#a8005b'}, 400);
	});
		});	
