 

$(document).ready(function() {
	if(!is_IE8) {
		$('nav.sub li a').hover(function() {
			if(!$(this).hasClass('current')) {
				$(this).animate({
					opacity: 1,
					width: 135
				}, 200);
			}
		}, function() {
			if(!$(this).hasClass('current')) {
				$(this).animate({
					opacity: '.6',
					width: 124
				}, 200);
			}
		});
	} else {
		$('nav.sub li a').hover(function() {
			if(!$(this).hasClass('current')) {
				$(this).animate({
					width: 135
				}, 200);
			}
		}, function() {
			if(!$(this).hasClass('current')) {
				$(this).animate({
					width: 124
				}, 200);
			}
		});
	}
});
