$(document).ready(function() {
	$('#nav a').fadeTo(0, 0.5)
	
	$('#nav a').hover(
		function () {
			$(this).stop();
			$(this).fadeTo(100, 1);
			$(this).animate( { borderLeftWidth:"18px" }, 100);			
		},
		
		function () {
			$(this).stop();
			$(this).fadeTo(100, 0.5);
			$(this).animate( { borderLeftWidth:"1px" }, 100);
		}
	);
	
 });