function toggle($id)	{
	//$('#'+$id).click(function()
	//{
		$('#'+$id+'_expand').slideToggle(200);
	//});
}

function hide($id)	{
	$('#'+$id).hide();
}

function show($id)	{
	$('#'+$id).show();
	$('#'+$id).focus();
}

function toggleId($oldId,$newId)	{
	if( $('#'+$oldId).length > 0 )	{
		$('#'+$oldId).attr('id',$newId);
	}	else	{
		$('#'+$newId).attr('id',$oldId);
	}
}

function toggleRightBox($id,$newId)	{
	toggle($id);
	toggleId($id,$newId);
}
