$(document).ready(function() {

$('#navslide li').hover(function() { //mouse in
		$(this).find('span').animate({ left: '0' }, 190);
	}, function() { //mouse out
		$(this).find('span').animate({ left: '-190px' }, 190);
	});
	
	});
