function d(id, pos)
{
	var elt = jQuery('#' + id);
	if (elt.css('left')==pos)
		elt.animate({left: '0px'});
	else
		elt.animate({left: pos});
}

function go(id, pos)
{
	var elt = jQuery('#' + id);
	if (elt.css('width')==pos)
		elt.animate({width: '0px'});
	else
		elt.animate({width: pos});
}
