$(function(){
	var start = $("#features ul li").css('width');
	var h_width = "197px"
	var h_sibling_width = "137px"
	$("#features ul li").mouseover(function(e){
		$(this).stop().animate({
			queue: false,
			width: h_width
		},300).siblings().stop().animate({
			queue: false,
			width: h_sibling_width
		},300)
	}).parent().mouseout(function(){
		$(this).find('li').stop().animate({
			queue: false,
			width: start
		},300)
	})
})