$(document).ready(function(){
	$('#nav li').mouseover(function() {
		$(this).addClass('hover');
	})
	$('#nav li').mouseout(function() {
		$(this).removeClass('hover');
	})
	
	$('#nav ul a').each(function(){
		var w = $(this).parent().parent().parent().css('width').replace('px','');
		w = w-20;
		$(this).css('width', w+'px');
	})
});

