$(function(){
	var 
		$sotabar = $('#navline'),
		$actiu = $("#navlinks span.actiu"),
		$cursor = $(document.createElement('span')).attr('id', 'navmark').appendTo($sotabar);

	if ($actiu.length > 0) {
		$cursor
			.width($actiu.width())
			.css("left", $($actiu).position().left)
	}

	var $el, duration = 200,origLeft = $cursor.position().left, origWidth = $cursor.width();

	$("#navlinks span").hover(
		function() {
			$el = $(this);
			$cursor.stop().animate({
					left: $el.position().left,
					width: $el.width() },
				duration);
		},
		function() {
			$cursor.stop().animate({
					left: origLeft,
					width: origWidth
				}, duration);
		});
	
	$("#navlinks").addClass('js');
});
